File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ set -ex
15
15
export CFLAGS=" -fPIC -Wa,-mrelax-relocations=no"
16
16
export CXXFLAGS=" -Wa,-mrelax-relocations=no"
17
17
18
- MUSL=musl-1.1.14
18
+ MUSL=musl-1.1.16
19
19
curl https://www.musl-libc.org/releases/$MUSL .tar.gz | tar xzf -
20
20
cd $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
23
26
make install
24
27
cd ..
25
28
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ set -ex
15
15
export CFLAGS=" -fPIC -Wa,-mrelax-relocations=no"
16
16
export CXXFLAGS=" -Wa,-mrelax-relocations=no"
17
17
18
- MUSL=musl-1.1.14
18
+ MUSL=musl-1.1.16
19
19
curl https://www.musl-libc.org/releases/$MUSL .tar.gz | tar xzf -
20
20
cd $MUSL
21
21
./configure --prefix=/musl-x86_64 --disable-shared
You can’t perform that action at this time.
0 commit comments