Skip to content

Commit

Permalink
fix compile on 64-bit machines
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Piumarta authored and Ian Piumarta committed May 18, 2011
1 parent a14a9bf commit e05c095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ debuggc : .force
$(MAKE) CFLAGS="$(CFLAGS) -DDEBUGGC=1" boot-eval

eval : *.l boot-eval
time ./boot-eval boot.l emit.l eval.l > eval.s && cc -c -o eval.o eval.s && size eval.o && gcc -m32 -o eval eval.o
time ./boot-eval boot.l emit.l eval.l > eval.s && gcc -m32 -c -o eval.o eval.s && size eval.o && gcc -m32 -o eval eval.o

eval2 : eval .force
time ./eval boot.l emit.l eval.l > eval2.s
Expand Down

0 comments on commit e05c095

Please sign in to comment.