11 lines
303 B
Bash
11 lines
303 B
Bash
#!/bin/sh
|
|
echo "* Build host compiler" >&2
|
|
|
|
cd tcc
|
|
|
|
./configure --extra-cflags="-Os -s" --prefix=$RTFS/ --elfinterp=/lib/libc.so --config-musl --config-bcheck=no --enable-static --cc=$RTFS/bin/tcc --crtprefix=/lib --libpaths=/lib:/lib/tcc --sysincludepaths=/include
|
|
make -j $(nproc)
|
|
make install
|
|
|
|
cd ..
|