mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-25 04:26:31 +01:00
Use replace to build mescc.scm.
This commit is contained in:
parent
a0cb0dfd60
commit
511a0f71c5
4 changed files with 17 additions and 63 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SPDX-FileCopyrightText: 2020-2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2020-2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2020-2022 fosslinux <fosslinux@aussies.space>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
|
@ -14,9 +14,6 @@ MES_STACK=6000000
|
|||
MES=${bindir}/mes-m2
|
||||
libdir=${MES_PREFIX}/lib
|
||||
|
||||
cp files/mescc.scm ${bindir}/
|
||||
chmod 755 ${bindir}/mescc.scm
|
||||
|
||||
# Unpack
|
||||
mkdir src build
|
||||
cd src
|
||||
|
|
@ -48,6 +45,18 @@ kaem --verbose --strict --file kaem.run
|
|||
cp bin/mes-m2 ${bindir}/mes-m2
|
||||
chmod 755 ${bindir}/mes-m2
|
||||
|
||||
# Create mescc.scm
|
||||
mescc_in=scripts/mescc.scm.in
|
||||
replace --file ${mescc_in} --output ${mescc_in} --match-on @prefix@ --replace-with ${prefix}
|
||||
replace --file ${mescc_in} --output ${mescc_in} --match-on @VERSION@ --replace-with ${MES_VERSION}
|
||||
replace --file ${mescc_in} --output ${mescc_in} --match-on @mes_cpu@ --replace-with ${ARCH}
|
||||
replace --file ${mescc_in} --output ${mescc_in} --match-on @mes_kernel@ --replace-with linux
|
||||
|
||||
mescc_scm=${bindir}/mescc.scm
|
||||
cp ${mescc_in} ${mescc_scm}
|
||||
chmod 755 ${mescc_scm}
|
||||
|
||||
|
||||
# Recompile Mes and Mes C library using mes-m2 bootstrapped Mes
|
||||
|
||||
alias mescc="${MES} -e main ${bindir}/mescc.scm -D HAVE_CONFIG_H=1 -I include -I include/linux/x86 -c"
|
||||
|
|
@ -231,7 +240,7 @@ mescc src/symbol.c
|
|||
mescc src/vector.c
|
||||
|
||||
# Link everything into new mes executable
|
||||
${MES} -e main ${bindir}/mescc.scm -- -L ${libdir} -nostdlib -o ${bindir}/mes -L . crt1.o builtins.o cc.o core.o display.o eval-apply.o gc.o globals.o hash.o lib.o math.o mes.o module.o posix.o reader.o stack.o string.o struct.o symbol.o vector.o -lc -lmescc
|
||||
${MES} -e main ${mescc_scm} -- -L ${libdir} -nostdlib -o ${bindir}/mes -L . crt1.o builtins.o cc.o core.o display.o eval-apply.o gc.o globals.o hash.o lib.o math.o mes.o module.o posix.o reader.o stack.o string.o struct.o symbol.o vector.o -lc -lmescc
|
||||
|
||||
# Make directories
|
||||
mkdir ${prefix}/lib/linux ${incdir}/mes ${incdir}/sys ${incdir}/linux
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue