mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-16 16:25:23 +01:00
15 lines
223 B
Bash
Executable file
15 lines
223 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cd src/mes-libc
|
|
|
|
# Patch
|
|
patch -Np0 -i ../../patches/mes-libc-qsort.patch
|
|
patch -Np0 -i ../../patches/mes-libc-crt1.patch
|
|
|
|
# Recompile libc
|
|
cd ../tcc-0.9.27
|
|
kaem --file ../../compile-libc.kaem
|
|
|
|
cd ../..
|