We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 267fb90 commit c764890Copy full SHA for c764890
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