Explorar el Código

Make it easier to compile a statically linked version

It's way too big, but maybe I can try with musl or ulibc soon.
Lucas Stadler %!s(int64=8) %!d(string=hace) años
padre
commit
e36fdd338d
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      scm/inc/Makefile

+ 3 - 0
scm/inc/Makefile

@ -4,6 +4,9 @@ run-scheme: scheme
4 4
scheme: scheme.s driver.c
5 5
	gcc -O3 -g scheme.s driver.c -o $@
6 6
7
scheme-static: scheme.s driver.c
8
	gcc -O3 -static scheme.s driver.c -o $@
9
7 10
asm: scheme.s
8 11
	cat scheme.s
9 12