diff options
author | Dmitry Cherkasov <dcherkassov@gmail.com> | 2012-10-17 22:03:13 +0400 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-10-17 17:43:35 -0400 |
commit | b21455f27db6e55e708f8e264f4a15412ee8fa52 (patch) | |
tree | 7ff13a2f19f81475438c3c10e89386eced816a6e | |
parent | 0d1ee26489af98df68c43b8a9b1b51454fe10fdd (diff) | |
download | external_mesa3d-b21455f27db6e55e708f8e264f4a15412ee8fa52.zip external_mesa3d-b21455f27db6e55e708f8e264f4a15412ee8fa52.tar.gz external_mesa3d-b21455f27db6e55e708f8e264f4a15412ee8fa52.tar.bz2 |
configure.ac: Fix LLVM 3.2 r600/radeonsi error message
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
Signed-off-by: Dmitry Cherkasov <Dmitrii.Cherkasov@amd.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index aefa142..ca24856 100644 --- a/configure.ac +++ b/configure.ac @@ -1757,7 +1757,7 @@ radeon_llvm_check() { if test "$LLVM_VERSION_MAJOR" -ge "3" -a "x$LLVM_VERSION" != "x3.1" && $LLVM_CONFIG --targets-built | grep -qv '\<AMDGPU\>' ; then AC_MSG_ERROR([To use the r600/radeonsi LLVM backend with LLVM 3.2 and newer, you need to fetch the LLVM source from: git://people.freedesktop.org/~tstellar/llvm master - and build with --enable-experimental-targets==AMDGPU]) + and build with --enable-experimental-targets=AMDGPU]) fi if test "x$LLVM_VERSION" = "x3.2"; then LLVM_LIBS="$LLVM_LIBS `$LLVM_CONFIG --libs amdgpu`" |