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

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pop <spop@codeaurora.org>2014-02-22 06:15:39 +0400
committerSebastian Pop <spop@codeaurora.org>2014-02-22 06:15:39 +0400
commitbfec361caec215a7f6b6f313f553aa115646435a (patch)
treeb4c36139f56eb73a18080e287d8211dfa18557e8 /polly/autoconf
parent1627a4159ea473e1cac14ad057b01d68daef5bb2 (diff)
GMP is only required for CLooG
llvm-svn: 201925
Diffstat (limited to 'polly/autoconf')
-rw-r--r--polly/autoconf/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/autoconf/configure.ac b/polly/autoconf/configure.ac
index 193e4b0a8ed7..be25dc6dbb33 100644
--- a/polly/autoconf/configure.ac
+++ b/polly/autoconf/configure.ac
@@ -75,11 +75,11 @@ dnl **************************************************************************
dnl * Set the location of various third-party software packages
dnl **************************************************************************
dnl Find Gmp
-find_lib_and_headers([gmp], [gmp.h], [gmp], [required])
+find_lib_and_headers([gmp], [gmp.h], [gmp])
dnl Find Isl
saved_CXXFLAGS=$CXXFLAGS
-CXXFLAGS="$CXXFLAGS $gmp_inc"
+CXXFLAGS="$CXXFLAGS"
find_lib_and_headers([isl], [isl/val.h], [isl], [required])
CXXFLAGS=$saved_CXXFLAGS