clover: Link to the necessary LLVM and Clang libs

This commit is contained in:
Tom Stellard 2012-05-02 11:06:13 -04:00
parent d416780f39
commit 7a6b5d42d8
2 changed files with 20 additions and 1 deletions

View file

@ -1854,6 +1854,9 @@ if test "x$enable_gallium_llvm" = xyes; then
LLVM_LIBS="-lLLVM-`$LLVM_CONFIG --version`"
else
LLVM_LIBS="`$LLVM_CONFIG --libs engine bitwriter`"
if test "x$enable_opencl" = xyes; then
LLVM_LIBS="${LLVM_LIBS} `llvm-config --libs ipo linker instrumentation`"
fi
fi
LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
LLVM_BINDIR=`$LLVM_CONFIG --bindir`

View file

@ -9,7 +9,23 @@ libOpenCL_la_LIBADD = \
$(top_builddir)/src/gallium/state_trackers/clover/libclover.la \
$(top_builddir)/src/gallium/auxiliary/libgallium.a \
$(GALLIUM_PIPE_LOADER_LIBS) $(LIBUDEV_LIBS) \
-ldl
-ldl \
-lclangCodeGen \
-lclangFrontendTool \
-lclangFrontend \
-lclangDriver \
-lclangSerialization \
-lclangCodeGen \
-lclangParse \
-lclangSema \
-lclangAnalysis \
-lclangRewrite \
-lclangAST \
-lclangLex \
-lclangBasic \
-lclangEdit \
$(LLVM_LIBS)
libOpenCL_la_SOURCES =