diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-15 11:54:19 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-15 11:54:19 -0400 |
commit | ed78a6054c628e80240eff8ea9a06412774df094 (patch) | |
tree | f50359e5f77b2c259984c9066c1849b59a89adfe /Makefile | |
parent | 6991c3986b7f43ad7f0448831c2da7fef9c2aa96 (diff) |
some error reporting
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ main: $(subst .cpp,.o,$(CXXFILES)) $(CXX) -o $@ $^ $(CXXFLAGS) $(LDFLAGS) prog: main test.fp - ./main < test.fp 2> forsp.ir + ./main < test.fp > forsp.ir llc -march=x86 -filetype=obj --relocation-model=pic forsp.ir -O1 clang -c support.c -m32 -Os clang support.o forsp.ir.o -m32 -Os |