aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-08-24 16:36:33 +0200
committerJorge Aparicio <jorge@japaric.io>2018-08-24 16:36:33 +0200
commit90c9f64c5a010944bc1bc4efb308f18e0af9100a (patch)
tree78dc3e80181da30d331e0ac3634dfa99c4784498 /ci
parentabca8299268e55bdb80b649ceb6b0cc5d0f3c34a (diff)
install newer gcc
Diffstat (limited to 'ci')
-rw-r--r--ci/install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 3c41921..e63e805 100644
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -4,6 +4,10 @@ main() {
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
rustup target add $TARGET
fi
+
+ mkdir gcc
+
+ curl -L https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2?revision=bc2c96c0-14b5-4bb4-9f18-bceb4050fee7?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,7-2018-q2-update | tar --strip-components=1 -C gcc -xj
}
main