aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7d20637..cb6748b 100644
--- a/Makefile
+++ b/Makefile
@@ -9,9 +9,9 @@ main: $(subst .cpp,.o,$(CXXFILES))
prog: main test.fp
./main < test.fp > forsp.ir
- llc -march=x86 -filetype=obj -relocation-model=pic forsp.ir -O2
- $(CC) -c support.c -m32 -O2
- $(CC) support.o forsp.ir.o -m32 -O2
+ llc -march=x86-64 -filetype=obj -relocation-model=pic forsp.ir -O2
+ $(CC) -c support.c -O2
+ $(CC) support.o forsp.ir.o -O2
clean:
rm -f a.out main *.ir *.o