We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94eb176 commit f969b61Copy full SHA for f969b61
src/ci/docker/scripts/musl.sh
@@ -32,11 +32,17 @@ shift
32
33
export CFLAGS="-fPIC $CFLAGS"
34
35
-MUSL=musl-1.1.18
+# FIXME: remove the patch when upate to 1.1.20
36
+MUSL=musl-1.1.19
37
38
# may have been downloaded in a previous run
39
if [ ! -d $MUSL ]; then
40
curl https://www.musl-libc.org/releases/$MUSL.tar.gz | tar xzf -
41
+ # Patch to fix https://github.com/rust-lang/rust/issues/48967
42
+ cd $MUSL && \
43
+ curl "https://git.musl-libc.org/cgit/musl/patch/?id=610c5a8524c3d6cd3ac5a5f1231422e7648a3791" |\
44
+ patch -p1 && \
45
+ cd -
46
fi
47
48
cd $MUSL
0 commit comments