aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2012-12-18 10:57:17 +0800
committerAndrew Hsieh <andrewhsieh@google.com>2012-12-18 10:57:17 +0800
commit1c3b114dca04ae0d61c1481b091a633e761e81dd (patch)
treeef4971e0fd2b7afa2c60a165822722f9c4e6d327
parentc04b060e8f31c91873715c55fc60444f1338942f (diff)
downloadllvm-1c3b114dca04ae0d61c1481b091a633e761e81dd.tar.gz
Fix llvm/polly build for --disable-shared
Fix POLLY_LIB when both gmp and cloog are built with --disable-shared. The reasons for --disable-shared are: 1. gmp can't be built in MacOSX without it 2. dynamic gmp and cloog libraries need user's explicit overriding LD_LIBRARY_PATH Change-Id: I2604011f08d1910d9e983f9a4002a71d07f2e1be
-rwxr-xr-xtools/polly/Makefile.config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/polly/Makefile.config.in b/tools/polly/Makefile.config.in
index 197a3aa113c..97ed50cfd56 100755
--- a/tools/polly/Makefile.config.in
+++ b/tools/polly/Makefile.config.in
@@ -39,4 +39,4 @@ POLLY_INC := @gmp_inc@ @isl_inc@ \
POLLY_LD := @gmp_ld@ @isl_ld@ @cloog_ld@ @openscop_ld@ @scoplib_ld@ @scoplib_rpath@
-POLLY_LIB := @gmp_lib@ @isl_lib@ @cloog_lib@ @openscop_lib@ @scoplib_lib@
+POLLY_LIB := @gmp_lib@ @isl_lib@ @cloog_lib@ @isl_lib@ @gmp_lib@ @openscop_lib@ @scoplib_lib@