1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-22 16:16:16 +04:00

Fix toolchain download link

This commit is contained in:
Jiajie Chen 2019-01-08 13:05:34 +08:00
parent 4beb865d32
commit 74dea5836f

View File

@ -40,7 +40,7 @@ install:
fi
- if [ $ARCH = aarch64 ]; then
if [ $TRAVIS_OS_NAME = linux ]; then
wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.2-2018.11/gcc-arm-8.2-2018.11-x86_64-aarch64-elf.tar.xz?revision=90d1fe0a-42d7-439c-8ea6-bb7234b2f540&la=en -O gcc-arm-8.2-2018.11-x86_64-aarch64-elf.tar.xz;
wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.2-2018.11/gcc-arm-8.2-2018.11-x86_64-aarch64-elf.tar.xz;
tar -xvf gcc-arm-8.2-2018.11-x86_64-aarch64-elf.tar.xz;
export PATH=$PATH:$PWD/gcc-arm-8.2-2018.11-x86_64-aarch64-elf/bin;
elif [ $TRAVIS_OS_NAME = osx ]; then