File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ set -ex
1515export CFLAGS=" -fPIC -Wa,-mrelax-relocations=no"
1616export CXXFLAGS=" -Wa,-mrelax-relocations=no"
1717
18- MUSL=musl-1.1.14
18+ MUSL=musl-1.1.16
1919curl https://www.musl-libc.org/releases/$MUSL .tar.gz | tar xzf -
2020cd $MUSL
21- CFLAGS=" $CFLAGS -m32" ./configure --prefix=/musl-i686 --disable-shared --target=i686
22- make -j10
21+ CC=gcc \
22+ CFLAGS=" $CFLAGS -m32" \
23+ ./configure --prefix=/musl-i686 --disable-shared \
24+ --target=i686
25+ make AR=ar RANLIB=ranlib -j10
2326make install
2427cd ..
2528
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ set -ex
1515export CFLAGS=" -fPIC -Wa,-mrelax-relocations=no"
1616export CXXFLAGS=" -Wa,-mrelax-relocations=no"
1717
18- MUSL=musl-1.1.14
18+ MUSL=musl-1.1.16
1919curl https://www.musl-libc.org/releases/$MUSL .tar.gz | tar xzf -
2020cd $MUSL
2121./configure --prefix=/musl-x86_64 --disable-shared
You can’t perform that action at this time.
0 commit comments