We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 905cafc commit 974ed62Copy full SHA for 974ed62
src/ci/docker/scripts/musl-toolchain.sh
@@ -43,6 +43,11 @@ shift
43
# debuggers can't walk the stack, etc. Fixes #90103.
44
export CFLAGS="-fPIC -g1 $CFLAGS"
45
46
+# The versions of the libc crate from 0.2.145 provide LFS64 aliases to their non-LFS64
47
+# counterparts. Configure the builtin musl to still provide LFS64 symbols to not break
48
+# pre-0.2.145 versions until enough of the ecosystem has updated.
49
+export CFLAGS="-D_LARGEFILE64_SOURCE $CFLAGS"
50
+
51
git clone https://github.com/richfelker/musl-cross-make # -b v0.9.9
52
cd musl-cross-make
53
# A version that includes support for building musl 1.2.5
0 commit comments