about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorGregory Szorc <gregory.szorc@gmail.com>2019-05-28 19:30:33 -0700
committerGregory Szorc <gregory.szorc@gmail.com>2019-05-28 19:30:33 -0700
commit51b47b8158a79701be2818106b0d5c4e533150fb (patch)
tree924c66285978744a3be925f4c48420fa1fb2d8d9 /src/ci/docker
parente70d5386d7abcf39adf54feb43a655c4f8a1bcb6 (diff)
downloadrust-51b47b8158a79701be2818106b0d5c4e533150fb.tar.gz
rust-51b47b8158a79701be2818106b0d5c4e533150fb.zip
Update musl-cross-make to 0.9.8
This version uses musl 1.1.22 and GCC 6.4.0 by default. It also
contains support for newer binutils and GCC versions, should we
want to bump those as well. But I'm purposefully limiting this
patch in order to reduce the surface area for controversy.
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/scripts/musl-toolchain.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/musl-toolchain.sh b/src/ci/docker/scripts/musl-toolchain.sh
index d5988a25671..55899fa6c3e 100644
--- a/src/ci/docker/scripts/musl-toolchain.sh
+++ b/src/ci/docker/scripts/musl-toolchain.sh
@@ -3,7 +3,7 @@
 #
 # Versions of the toolchain components are configurable in `musl-cross-make/Makefile` and
 # musl unlike GLIBC is forward compatible so upgrading it shouldn't break old distributions.
-# Right now we have: Binutils 2.27, GCC 6.3.0, musl 1.1.18
+# Right now we have: Binutils 2.27, GCC 6.4.0, musl 1.1.22.
 set -ex
 
 hide_output() {
@@ -33,7 +33,7 @@ shift
 # Apparently applying `-fPIC` everywhere allows them to link successfully.
 export CFLAGS="-fPIC $CFLAGS"
 
-git clone https://github.com/richfelker/musl-cross-make -b v0.9.7
+git clone https://github.com/richfelker/musl-cross-make -b v0.9.8
 cd musl-cross-make
 
 hide_output make -j$(nproc) TARGET=$TARGET