Skip to content

Commit

Permalink
fix llvm-config parsing mixing up lib names
Browse files Browse the repository at this point in the history
  • Loading branch information
supercoolin committed Sep 11, 2023
1 parent e9c0d6d commit 514ceef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 514ceef

Please sign in to comment.