From: Dave Airlie Date: Sun, 13 Mar 2011 23:36:47 +0000 (+1000) Subject: autoconf/llvm: fix build for disassembler X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=110f5e2056f80d0b87f2a4388bc35727070ba6d5;p=mesa.git autoconf/llvm: fix build for disassembler tested by okias on irc --- diff --git a/configure.ac b/configure.ac index 0de013f3241..70380ff9317 100644 --- a/configure.ac +++ b/configure.ac @@ -1649,7 +1649,7 @@ if test "x$enable_gallium_llvm" = xyes; then if test "x$LLVM_CONFIG" != xno; then LLVM_VERSION=`$LLVM_CONFIG --version` LLVM_CFLAGS=`$LLVM_CONFIG --cppflags` - LLVM_LIBS="`$LLVM_CONFIG --libs jit interpreter nativecodegen bitwriter` -lstdc++" + LLVM_LIBS="`$LLVM_CONFIG --libs jit interpreter nativecodegen bitwriter x86disassembler` -lstdc++" LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags` GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"