summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiels Ole Salscheider <[email protected]>2015-01-24 22:49:44 +0100
committerEmil Velikov <[email protected]>2015-02-02 00:12:04 +0000
commiteab8dc28ed4c03fcebb8ed61f80db35adecd217a (patch)
tree9eb0cd8d9f44131f1af9f9bda2e61252ccb164d8
parentcc580045a8226316c2da6190669964529b875879 (diff)
configure: Link against all LLVM targets when building clover
Since 8e7df519bd8556591794b2de08a833a67e34d526, we initialise all targets in clover. This fixes bug 85380. v2: Mention correct bug in commit message Signed-off-by: Niels Ole Salscheider <[email protected]> Reviewed-by: Tom Stellard <[email protected]> Reviewed-by: Jan Vesely <[email protected]> Reviewed-by: Francisco Jerez <[email protected]> Cc: "10.4" <[email protected]> (cherry picked from commit 4b94c3fc3136f8e5225956864dd13828c9b81d5f)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 506be34a64f..399b0959b62 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1716,7 +1716,7 @@ if test "x$enable_gallium_llvm" = xyes; then
fi
if test "x$enable_opencl" = xyes; then
- LLVM_COMPONENTS="${LLVM_COMPONENTS} ipo linker instrumentation"
+ LLVM_COMPONENTS="${LLVM_COMPONENTS} all-targets ipo linker instrumentation"
# LLVM 3.3 >= 177971 requires IRReader
if $LLVM_CONFIG --components | grep -qw 'irreader'; then
LLVM_COMPONENTS="${LLVM_COMPONENTS} irreader"