diff options
author | Marek Olšák <[email protected]> | 2011-04-21 13:27:55 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-04-25 13:45:05 +0200 |
commit | a86fc719d6402eb482657707741890e69e81700f (patch) | |
tree | b5394abb3562f69fa100339614c41cc18a06d56f /configure.ac | |
parent | 9e59ed59c17daeb4e77f9455ac8794307cc1cae2 (diff) |
configure.ac: enable LLVM by default on x86 and x86_64
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 77b2d55f0d0..d8c50ce32f5 100644 --- a/configure.ac +++ b/configure.ac @@ -1687,9 +1687,14 @@ dnl Gallium LLVM dnl AC_ARG_ENABLE([gallium-llvm], [AS_HELP_STRING([--enable-gallium-llvm], - [build gallium LLVM support @<:@default=disabled@:>@])], + [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])], [enable_gallium_llvm="$enableval"], [enable_gallium_llvm=auto]) +if test "x$enable_gallium_llvm" = xauto; then + case "$host_cpu" in + i*86|x86_64) enable_gallium_llvm=yes;; + esac +fi if test "x$enable_gallium_llvm" = xyes; then if test "x$LLVM_CONFIG" != xno; then LLVM_VERSION=`$LLVM_CONFIG --version` |