diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-29 10:41:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-29 16:17:50 +0100 |
commit | bde382a2568147c1a5eec0cb885856cd5aaae3ad (patch) | |
tree | 9003ee9f762b1e86445eae643fd91a709e6f96e4 /configure.ac | |
parent | 8cce131dcc1803ac95f3079098be767662fcca09 (diff) |
Fix order of CLANGTOOLLIBS archives
Building compilerplugins against recent Clang 10 trunk started to fail with
> [GEN] compilerplugins/clang/sharedvisitor/analyzer
[...]
> /usr/bin/ld: /home/sbergman/llvm/inst/lib/libclangFrontend.a(CompilerInvocation.cpp.o): in function `getOptimizationLevel(llvm::opt::ArgList&, clang::InputKind, clang::DiagnosticsEngine&) [clone .isra.0]':
> /home/sbergman/github.com/llvm/llvm-project/clang/include/clang/Driver/OptionUtils.h:40: undefined reference to `clang::getLastArgIntValue(llvm::opt::ArgList const&, llvm::opt::OptSpecifier, int, clang::DiagnosticsEngine*, unsigned int)'
[...]
Change-Id: I3b74d71bd2488ebd5cc7e3a88d4eb0451268141c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85934
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ad246a64f37a..093027bcf524 100644 --- a/configure.ac +++ b/configure.ac @@ -7252,7 +7252,7 @@ if test "$COM_IS_CLANG" = "TRUE"; then LDFLAGS="" AC_MSG_CHECKING([for clang libraries to use]) if test -z "$CLANGTOOLLIBS"; then - LIBS="-lclangTooling -lclangDriver -lclangFrontend -lclangParse -lclangSema -lclangEdit \ + LIBS="-lclangTooling -lclangFrontend -lclangDriver -lclangParse -lclangSema -lclangEdit \ -lclangAnalysis -lclangAST -lclangLex -lclangSerialization -lclangBasic $COMPILER_PLUGINS_LINKFLAGS" AC_LINK_IFELSE([ AC_LANG_PROGRAM([[#include "clang/Basic/SourceLocation.h"]], |