From: Niels Ole Salscheider Date: Wed, 7 Aug 2013 15:48:48 +0000 (+0200) Subject: clover: Fix linkage of libOpenCL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5394ee8f30452ae201b1e35e579aa6edcd991cee;p=mesa.git clover: Fix linkage of libOpenCL Clover needs the option component of llvm. Reviewed-by: Tom Stellard Signed-off-by: Niels Ole Salscheider --- diff --git a/configure.ac b/configure.ac index 62d06e0357f..0dcd2a51f99 100644 --- a/configure.ac +++ b/configure.ac @@ -1617,6 +1617,10 @@ if test "x$enable_gallium_llvm" = xyes; then if $LLVM_CONFIG --components | grep -qw 'irreader'; then LLVM_COMPONENTS="${LLVM_COMPONENTS} irreader" fi + # LLVM 3.4 requires Option + if $LLVM_CONFIG --components | grep -qw 'option'; then + LLVM_COMPONENTS="${LLVM_COMPONENTS} option" + fi fi DEFINES="${DEFINES} -DHAVE_LLVM=0x0$LLVM_VERSION_INT" MESA_LLVM=1