summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2017-01-18 13:54:03 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-02-10 13:57:55 +0000
commitedecfda23fdfbbeb802bc4facae5207272414f07 (patch)
treef888652f85592983291d74a5b6c254b24bdffea3
parentd0c7c6a8ccd67eba8f190985dee7ef3dee570bd7 (diff)
configure.ac: disable enable_gallium_llvm in the !x86 case
Already implicitly handled throughout, but keep it clear and disable gallium-llvm. This change should be a no-op. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Tobias Droste <tdroste@gmx.de> (cherry picked from commit ce65cc1f1f648f17d9284e65f1ad69be647de3d3)
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 4703b6a5be..d4c1fd46cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1746,6 +1746,7 @@ AC_ARG_ENABLE([gallium-llvm],
if test "x$enable_gallium_llvm" = xauto; then
case "$host_cpu" in
i*86|x86_64|amd64) enable_gallium_llvm=yes;;
+ *) enable_gallium_llvm=no;;
esac
fi