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:
authorMichael Kruse <llvm@meinersbur.de>2015-06-22 20:52:33 +0300
committerMichael Kruse <llvm@meinersbur.de>2015-06-22 20:52:33 +0300
commitee512e58a32f6a653ab47f2c8272e459b03c0bd8 (patch)
treeb9ea81020c0b9cb111982e4165b02e5a8be2aa32 /polly/Makefile.config.in
parent36b718fc74530d9a7e58185efa78fedbee7f5a13 (diff)
Prepare replacing ISL by its 'make dist' files
Currently the Polly repository contains the ISL sources with bogus isl_config.h and gitversion.h. This is problematic. In this state a macro #define __attribute__(x) becomes active in the source, leading to various problems e.g. when included before system header files. This patch will instead generate the two files specific to the host system at configure-time. For CMake, we replicate the tests that ISL's configure performs using try_compile(). In autotools build, we just invoke ISL's configure to generate the two files. This consequently required regenerating autoconf/configure. 'make dist' distributions of ISL contain a file GIT_HEAD_ID which contains the version the distribution is derived from. The repository files themselves do not contain such a hint. In a later commit we will replace the isl directory by the contents of such a .tar.gz. It does not contain the files imdrover.c iprime.c pi.c and rsamath.c currently compiled into Polly, but not used and therefore are removed by this patch. In the long term we plan to generate a dedicated library for ISL instead of adding its files to Polly. This also does not yet include the switch to small-integer optimized ISL nor enabling C99 mode required for the former. Those will come as well in separate patches. Differential version: http://reviews.llvm.org/D10603 Reviewers: grosser llvm-svn: 240301
Diffstat (limited to 'polly/Makefile.config.in')
-rw-r--r--polly/Makefile.config.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/polly/Makefile.config.in b/polly/Makefile.config.in
index 15e9d0ab3e91..993b9d34ac1d 100644
--- a/polly/Makefile.config.in
+++ b/polly/Makefile.config.in
@@ -46,6 +46,7 @@ CUDALIB_FOUND := @cuda_found@
# Set include directories
POLLY_INC := @cuda_inc@ \
+ -I$(POLLY_OBJ_ROOT)/lib/External/isl \
-I$(POLLY_SRC_ROOT)/lib/JSON/include \
-I$(POLLY_SRC_ROOT)/lib/External/isl/include \
-I$(POLLY_SRC_ROOT)/lib/External/isl/imath \