From a5e96858eabef246ce078e416fa35b146190e80d Mon Sep 17 00:00:00 2001 From: Andreas Boll Date: Fri, 12 Jul 2013 12:38:38 +0200 Subject: [PATCH 9.1] configure.ac: Require llvm-3.2 for r600g/radeonsi llvm backends v2: Update the error message too. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=66847 --- configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 71b0366..1f404a1 100644 --- a/configure.ac +++ b/configure.ac @@ -1780,8 +1780,8 @@ gallium_require_drm_loader() { radeon_llvm_check() { LLVM_REQUIRED_VERSION_MAJOR="3" LLVM_REQUIRED_VERSION_MINOR="2" - if test "$LLVM_VERSION_INT" -lt "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then - AC_MSG_ERROR([LLVM $LLVM_REQUIRED_VERSION_MAJOR.$LLVM_REQUIRED_VERSION_MINOR or newer with R600 target enabled is required. + if test "$LLVM_VERSION_INT" -ne "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then + AC_MSG_ERROR([LLVM $LLVM_REQUIRED_VERSION_MAJOR.$LLVM_REQUIRED_VERSION_MINOR with R600 target enabled is required. To use the r600/radeonsi LLVM backend, you need to fetch the LLVM source from: git://people.freedesktop.org/~tstellar/llvm master and build with --enable-experimental-targets=R600]) -- 1.7.4.1