From 514ceef12f7a8fbcf94c8fc084ad1eb0f0718f77 Mon Sep 17 00:00:00 2001 From: supercoolin <colin.evrard@uclouvain.be> Date: Mon, 11 Sep 2023 15:11:24 +0200 Subject: [PATCH] fix llvm-config parsing mixing up lib names --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 66541b341..ba0fc8f92 100755 --- a/configure +++ b/configure @@ -19108,7 +19108,7 @@ else have_llvm=yes LLVM_OBJS="llvmutils.o $LLVM_OBJS" - LIBS_LLVM="`$LLVMCONFIG --ldflags --system-libs --libs all | tr -d '\n'` $LIBS_LLVM" + LIBS_LLVM="`$LLVMCONFIG --ldflags --system-libs --libs all | tr '\n' ' ' ` $LIBS_LLVM" INCLUDES_LLVM="`$LLVMCONFIG --cxxflags | tr -d '\n'` $INCLUDES_LLVM" fi -- GitLab