fix: __pre_gc and __post_gc functions; remove extra

This commit is contained in:
danyabeerzun 2018-12-12 12:42:04 +03:00
parent 94327b7921
commit 576beac0dc
3 changed files with 89 additions and 277 deletions

View file

@ -2,10 +2,10 @@ all: gc_runtime.o runtime.o
ar rc runtime.a gc_runtime.o runtime.o
gc_runtime.o: gc_runtime.s
gcc -g -m32 -c gc_runtime.s
gcc -g -fstack-protector-all -m32 -c gc_runtime.s
runtime.o: runtime.c
gcc -g -m32 -c runtime.c
gcc -g -fstack-protector-all -m32 -c runtime.c
clean:
rm -f *.a *.o *~