diff options
author | Tristan Gingold | 2015-05-25 20:56:52 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-05-25 20:56:52 +0200 |
commit | fca8226fb65a446ebbe35f7db89384b49a93b510 (patch) | |
tree | 0e650f5f1913b63dbdda07c9d6445ba927f6da53 /src/ortho/llvm | |
parent | b8a48a6144a988904867fb044fbe2cb9f7d2750a (diff) | |
download | ghdl-fca8226fb65a446ebbe35f7db89384b49a93b510.tar.gz ghdl-fca8226fb65a446ebbe35f7db89384b49a93b510.tar.bz2 ghdl-fca8226fb65a446ebbe35f7db89384b49a93b510.zip |
Fix llvm build (add cxxflags).
Diffstat (limited to 'src/ortho/llvm')
-rw-r--r-- | src/ortho/llvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ortho/llvm/Makefile b/src/ortho/llvm/Makefile index c52fa97..fcf89d3 100644 --- a/src/ortho/llvm/Makefile +++ b/src/ortho/llvm/Makefile @@ -14,7 +14,7 @@ $(ortho_exec): $(ortho_srcdir)/llvm/ortho_llvm.ads force llvm-cbindings.o `$(LLVM_CONFIG) --ldflags --libs --system-libs` llvm-cbindings.o: $(ortho_srcdir)/llvm/llvm-cbindings.cpp - $(CXX) -c -I`$(LLVM_CONFIG) --includedir --cflags` -o $@ $< + $(CXX) -c -I`$(LLVM_CONFIG) --includedir --cflags --cxxflags` -o $@ $< clean: $(RM) -f *.o *.ali ortho_code_main |