diff options
author | 2018-08-25 17:26:40 +0200 | |
---|---|---|
committer | 2018-08-25 17:26:40 +0200 | |
commit | 2097a3d7a5ef0964d1634e09af1d2ad77a5291da (patch) | |
tree | 8bae75e0165bbae5109069b15800fdd78eb74a92 | |
parent | 4faa462a3d349358fd217b468c62ad362c302abf (diff) | |
download | cortex-m-2097a3d7a5ef0964d1634e09af1d2ad77a5291da.tar.gz cortex-m-2097a3d7a5ef0964d1634e09af1d2ad77a5291da.tar.zst cortex-m-2097a3d7a5ef0964d1634e09af1d2ad77a5291da.zip |
always install arm-none-eabi-gcc
-rw-r--r-- | cortex-m-rt/ci/install.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/cortex-m-rt/ci/install.sh b/cortex-m-rt/ci/install.sh index f211207..e63e805 100644 --- a/cortex-m-rt/ci/install.sh +++ b/cortex-m-rt/ci/install.sh @@ -3,13 +3,11 @@ set -euxo pipefail main() { if [ $TARGET != x86_64-unknown-linux-gnu ]; then rustup target add $TARGET + fi - if [ ${CC:-gcc} = gcc ]; then - mkdir gcc + 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 - fi - fi + 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 |