live-bootstrap/sysa/tcc-0.9.27/mes-libc-patched.kaem

20 lines
333 B
Plaintext
Raw Normal View History

2021-01-29 16:43:10 +00:00
#!/bin/sh
2021-02-08 06:23:31 +00:00
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
2021-01-29 16:43:10 +00:00
set -ex
cd src/mes-libc
# Patch
patch -Np0 -i ../../patches/mes-libc-qsort.patch
patch -Np0 -i ../../patches/mes-libc-crt1.patch
2021-01-29 16:43:10 +00:00
# Recompile libc
cd ../tcc-0.9.27
kaem --file ../../compile-libc.kaem
cd ../..