diff options
Diffstat (limited to 'src/ortho/llvm/Makefile')
-rw-r--r-- | src/ortho/llvm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ortho/llvm/Makefile b/src/ortho/llvm/Makefile index 135dbdf..0e20086 100644 --- a/src/ortho/llvm/Makefile +++ b/src/ortho/llvm/Makefile @@ -8,12 +8,12 @@ BE=llvm all: $(ortho_exec) $(ortho_exec): $(ortho_srcdir)/llvm/ortho_llvm.ads force llvm-cbindings.o - gnatmake -m -o $@ -g -aI$(ortho_srcdir)/llvm -aI$(ortho_srcdir) \ + gnatmake -o $@ -aI$(ortho_srcdir)/llvm -aI$(ortho_srcdir) \ $(GNAT_FLAGS) ortho_code_main -bargs -E \ -largs llvm-cbindings.o `$(LLVM_CONFIG) --ldflags --libs --system-libs` -lc++ #-static llvm-cbindings.o: $(ortho_srcdir)/llvm/llvm-cbindings.cpp - $(CXX) -c -I`$(LLVM_CONFIG) --includedir --cflags` -g -o $@ $< + $(CXX) -c -I`$(LLVM_CONFIG) --includedir --cflags` -o $@ $< clean: $(RM) -f *.o *.ali ortho_code_main |