From 69d136281d0a0d7cd36a091a8a8d10f6b2473754 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 27 Jun 2024 08:42:30 -0400 Subject: switch target to x86-64 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3