Jeremiah Orians d1a31270c6 Updated README to reflect current commands | hace 2 años | |
---|---|---|
functions | hace 3 años | |
guix | hace 3 años | |
include | hace 3 años | |
lib | hace 3 años | |
mes | hace 3 años | |
module | hace 3 años | |
scaffold | hace 4 años | |
scripts | hace 3 años | |
src | hace 3 años | |
test | hace 4 años | |
.gitignore | hace 3 años | |
LICENSE | hace 6 años | |
README.md | hace 2 años | |
guix.scm | hace 3 años | |
kaem.riscv64 | hace 3 años | |
kaem.run | hace 3 años | |
kaem.x86 | hace 3 años | |
makefile | hace 3 años | |
pre-inst-env | hace 3 años |
Making Mes.c M2-Planet friendly
The goal of this project is to provide a minimally-adapted GNU Mes which can be compiled by M2-Planet and is able to compile the real GNU Mes (and thereby run mescc).
Completed for x86 but porting to M2libc to accelerate architecture porting is not done.
Just run:
$ make mes-m2-boot
You can try running mescc like this
MES_ARENA=20000000
MES_MAX_ARENA=20000000
MES_STACK=6000000
export MES_ARENA MES_MAX_ARENA MES_STACK
$ ./bin/mes --no-auto-compile -L ../nyacc-1.00.2/module/ -e main scripts/mescc.scm -I include -v -S scaffold/exit-42.c -o foo.S
You can also compare the execution with guile:
$ guile --no-auto-compile -L ../nyacc-1.00.2/module/ -L module -e main scripts/mescc.scm -I include -v -S scaffold/exit-42.c -o foo2.S
to compile using the MesCC and nyacc included here.