From bca8865aecaf9866e56ee415b100a442c1ef473c Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Mon, 11 Aug 2014 13:16:05 +0200 Subject: [PATCH] configure.ac: Do not require llvm on x32 Cc: "10.2" Signed-off-by: Maarten Lankhorst (cherry picked from commit 4c16e6a8e01fc8f6cbd02f2c1d367adfe17ec3c8) --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 24c676643a3..b8f584c987d 100644 --- a/configure.ac +++ b/configure.ac @@ -1757,6 +1757,7 @@ gallium_check_st() { gallium_require_llvm() { if test "x$MESA_LLVM" = x0; then + case "$host" in *gnux32) return;; esac case "$host_cpu" in i*86|x86_64|amd64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);; esac