From: Sven Verdoolaege Date: Sun, 7 Apr 2013 12:07:27 +0000 (+0200) Subject: configure.ac: explicitly link in llvm bitreader component in extract_interface X-Git-Tag: isl-0.11.2~5 X-Git-Url: https://repo.or.cz/w/isl.git/commitdiff_plain/e524476180819e9bd42a67c0e596e750dc58a4c8 configure.ac: explicitly link in llvm bitreader component in extract_interface Apparently, the bitreader component is required for ASTReader and is no longer included implicitly. Signed-off-by: Sven Verdoolaege --- diff --git a/configure.ac b/configure.ac index eac09c3a..7baa1f99 100644 --- a/configure.ac +++ b/configure.ac @@ -126,7 +126,7 @@ system) CLANG_CXXFLAGS=`$llvm_config --cxxflags` CLANG_LDFLAGS=`$llvm_config --ldflags` targets=`$llvm_config --targets-built` - CLANG_LIBS=`$llvm_config --libs $targets asmparser support mc` + CLANG_LIBS=`$llvm_config --libs $targets asmparser bitreader support mc` CLANG_PREFIX=`$llvm_config --prefix` AC_DEFINE_UNQUOTED(CLANG_PREFIX, ["$CLANG_PREFIX"], [Clang installation prefix])