We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f4c87c + c764890 commit c2d6c08Copy full SHA for c2d6c08
src/ci/docker/scripts/musl-toolchain.sh
@@ -29,6 +29,10 @@ TARGET=$ARCH-linux-musl
29
OUTPUT=/usr/local
30
shift
31
32
+# Ancient binutils versions don't understand debug symbols produced by more recent tools.
33
+# Apparently applying `-fPIC` everywhere allows them to link successfully.
34
+export CFLAGS="-fPIC $CFLAGS"
35
+
36
git clone https://github.com/richfelker/musl-cross-make -b v0.9.7
37
cd musl-cross-make
38
0 commit comments