From: Tom Stellard Date: Tue, 17 Jul 2012 14:16:58 +0000 (+0000) Subject: configure.ac: Add libLLVMMCJIT to the LLVM_LDFLAGS X-Git-Tag: accepted/2.0alpha-wayland/20121114.171706~1160 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed41a559dc3293dab75c4f0198531a6f5b870c39;p=profile%2Fivi%2Fmesa.git configure.ac: Add libLLVMMCJIT to the LLVM_LDFLAGS This is neccessary for linking the llvmpipe tests. It appears this dependency was introduced by the "wider native register" changes. Reviewed-by: Jose Fonseca --- diff --git a/configure.ac b/configure.ac index 9227474..068f632 100644 --- a/configure.ac +++ b/configure.ac @@ -1849,7 +1849,7 @@ if test "x$enable_gallium_llvm" = xyes; then 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`" + LLVM_LIBS="${LLVM_LIBS} `llvm-config --libs ipo linker instrumentation mcjit`" fi fi LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`