summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-03-14 19:58:22 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-03-14 20:05:56 +0000
commit202c345c7cf5074c0d0be208067c072c2f53535a (patch)
treeda4f627f4102dec54ca0977eea49f1c5345f0421 /configs
parent25e31140952c328f70f804e0134664d7ed6248a6 (diff)
autoconf/make: Don't specify individual llvm libraries.
We need more and more of these, and it is difficult and prone to version incompatability issues trying to single out every one of them. This mimicks what was done in SCons.
Diffstat (limited to 'configs')
-rw-r--r--configs/linux-llvm6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/linux-llvm b/configs/linux-llvm
index dde40a38a07..359bee28250 100644
--- a/configs/linux-llvm
+++ b/configs/linux-llvm
@@ -31,9 +31,9 @@ endif
ifeq ($(MESA_LLVM),1)
LLVM_CFLAGS=`llvm-config --cppflags`
- LLVM_CXXFLAGS=`llvm-config --cxxflags backend bitreader engine ipo interpreter instrumentation` -Wno-long-long
- LLVM_LDFLAGS = $(shell llvm-config --ldflags backend bitreader engine ipo interpreter instrumentation)
- LLVM_LIBS = $(shell llvm-config --libs backend bitwriter bitreader engine ipo interpreter instrumentation)
+ LLVM_CXXFLAGS=`llvm-config --cxxflags` -Wno-long-long
+ LLVM_LDFLAGS = $(shell llvm-config --ldflags)
+ LLVM_LIBS = $(shell llvm-config --libs)
MKLIB_OPTIONS=-cplusplus
else
LLVM_CFLAGS=