diff options
author | Dave Airlie <[email protected]> | 2011-03-14 09:36:47 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-03-14 09:37:08 +1000 |
commit | 110f5e2056f80d0b87f2a4388bc35727070ba6d5 (patch) | |
tree | 5fb9c84e5d5aea169c7556311dffb1917c1179c8 /configure.ac | |
parent | c27e58c10940a6442705a4399c5100c82c122a6e (diff) |
autoconf/llvm: fix build for disassembler
tested by okias on irc
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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" |