diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-27 08:42:30 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-27 08:42:30 -0400 |
commit | 69d136281d0a0d7cd36a091a8a8d10f6b2473754 (patch) | |
tree | a4af5c118af92edb19854045b0bdd60df63ff4c1 /Makefile | |
parent | 0d8932e96934dbeb0f1e21872693ca833a64341f (diff) |
switch target to x86-64
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |