Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2014-02-27 22:32:42 +0400
committerZoltan Varga <vargaz@gmail.com>2014-02-27 22:32:50 +0400
commite98625a6e3853f7fb75158a600ea46857248b04f (patch)
treec176e2c4754e823cad62aa0c112dab153fd5e589 /configure.in
parent42edc1dddb0c66acfe18bea5031dd23dc8ff24cd (diff)
[runtime] Switch the order of LLVM_LIBS and LLVM_LDFLAGS on the linker command line. Hopefully fixes #17931.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 2313669d990..9450bd5484c 100644
--- a/configure.in
+++ b/configure.in
@@ -2439,7 +2439,7 @@ if test "x$enable_llvm" = "xyes"; then
else
LLVM_LIBS=`$LLVM_CONFIG --libs core bitwriter jit mcjit $llvm_codegen`
fi
- LLVM_LIBS="$LLVM_LDFLAGS $LLVM_LIBS -lstdc++"
+ LLVM_LIBS="$LLVM_LIBS $LLVM_LDFLAGS -lstdc++"
expected_llvm_version="3.4svn-mono-mono/e656cac"