fix mescc alias in mes.kaem script

delete --no-auto-compile : useless in this case (MES doesn't compile)
delete -- : this starts an interactive scheme session (which is not the case here)
This commit is contained in:
Gabriel Wicki 2021-12-22 16:24:13 +01:00
parent 4cde51df49
commit 65c7d78620
2 changed files with 3 additions and 2 deletions

View File

@ -62,7 +62,8 @@ class SysGeneral:
raise Exception(f"Checksum mismatch for file {os.path.basename(file_name)}:\n\
expected: {expected_hash}\n\
actual: {readable_hash}\n\
When in doubt, try deleting the file in question -- it will be downloaded again when running this script the next time")
When in doubt, try deleting the file in question -- it will be downloaded again when running \
this script the next time")
raise Exception("File checksum is not yet recorded")

View File

@ -40,7 +40,7 @@ chmod 755 ${bindir}/mes-m2
# Build Mes C library using mes-m2 bootstrapped Mes
alias mescc="${MES} --no-auto-compile -e main ${bindir}/mescc.scm -- -D HAVE_CONFIG_H=1 -I include -I include/linux/x86 -c"
alias mescc="${MES} -e main ${bindir}/mescc.scm -D HAVE_CONFIG_H=1 -I include -I include/linux/x86 -c"
# Start with crt1.o
mescc lib/linux/x86-mes-mescc/crt1.c