12 lines
184 B
Bash
12 lines
184 B
Bash
|
#!/bin/sh
|
||
|
echo "* Build musl libc"
|
||
|
|
||
|
cd libc
|
||
|
|
||
|
make clean
|
||
|
./configure CC=cc CFLAGS="-Os -s -pipe" --disable-warnings --disable-static --prefix=$RTFS
|
||
|
make -j $(nproc)
|
||
|
make install
|
||
|
|
||
|
cd ..
|