summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <dev@sunfishcode.online>2022-01-24 14:55:41 -0800
committerDan Gohman <dev@sunfishcode.online>2022-01-24 14:57:07 -0800
commit7015ee9a42834ea31194ea6b36e3e47f8b39bbdb (patch)
treeb588d19ffd064c8ba89c766fd785b075d55a5736
parentcafba833e8b25befcbb3ce30f3731afb8a3d2ea6 (diff)
downloadrust-libc-7015ee9a42834ea31194ea6b36e3e47f8b39bbdb.tar.gz
Update the mips-unknown-linux-musl CI toolchain.
Update the mips-unknown-linux-musl CI toolchain to openwrt-sdk-21.02.1, as suggested [here]. This also switches from ar71xx to ath79, since [ar71xx is now deprecated] and ath79 is the replacement. [here]: https://github.com/rust-lang/libc/pull/2633#issuecomment-1016003790 [ar71xx is now deprecated]: https://openwrt.org/docs/techref/targets/ar71xx
-rw-r--r--ci/docker/mips-unknown-linux-musl/Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/docker/mips-unknown-linux-musl/Dockerfile b/ci/docker/mips-unknown-linux-musl/Dockerfile
index a9b49ce744..c68aa90ee3 100644
--- a/ci/docker/mips-unknown-linux-musl/Dockerfile
+++ b/ci/docker/mips-unknown-linux-musl/Dockerfile
@@ -6,11 +6,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN mkdir /toolchain
-# Linux kernel version: 4.14.151
-# See build_dir/target-mips_24kc_musl/linux-ar71xx_generic/linux-4.14.151
+# Linux kernel version: 5.4.154
+# See build_dir/target-mips_24kc_musl/linux-ath79_generic/linux-5.4.154
# Musl version: 1.1.24
-# See staging_dir/toolchain-mips_24kc_gcc-7.4.0_musl/info.mk
-RUN curl --retry 5 -L https://downloads.openwrt.org/releases/19.07.0-rc1/targets/ar71xx/generic/openwrt-sdk-19.07.0-rc1-ar71xx-generic_gcc-7.4.0_musl.Linux-x86_64.tar.xz | \
+# See staging_dir/toolchain-mips_24kc_gcc-8.4.0_musl/info.mk
+RUN curl --retry 5 -L https://downloads.openwrt.org/releases/21.02.1/targets/ath79/generic/openwrt-sdk-21.02.1-ath79-generic_gcc-8.4.0_musl.Linux-x86_64.tar.xz | \
tar xJf - -C /toolchain --strip-components=1
# See https://lkml.org/lkml/2014/3/14/269