configure.ac: Use amdgpu component for LLVM 3.2

The amdgpu component actually does exist.  I must have been using an
older version of llvm-config by accident when I first made this change.
This commit is contained in:
Tom Stellard 2012-10-01 21:00:00 +00:00
parent f2f17fc348
commit 67fcb3c2b4
1 changed files with 2 additions and 4 deletions

View File

@ -1793,10 +1793,8 @@ radeon_llvm_check() {
git://people.freedesktop.org/~tstellar/llvm master
and build with --enable-experimental-targets==AMDGPU])
fi
if test "$LLVM_VERSION" = "3.2"; then
dnl LLVM 3.2 does not add experimental libraries to llvm-config's
dnl library list.
LLVM_LIBS="$LLVM_LIBS -lLLVMAMDGPUCodeGen -lLLVMAMDGPUDesc -lLLVMAMDGPUAsmPrinter -lLLVMAMDGPUInfo `$LLVM_CONFIG --libs mc`"
if test "x$LLVM_VERSION" = "x3.2"; then
LLVM_LIBS="$LLVM_LIBS `$LLVM_CONFIG --libs amdgpu`"
fi
}