Drop ISL_INSTALL path

There is no need for an isl install path anymore. isl is now part of Polly.

llvm-svn: 234605
This commit is contained in:
Tobias Grosser 2015-04-10 15:41:14 +00:00
parent bd989e78f1
commit aa7f0f8d5c
1 changed files with 2 additions and 2 deletions

View File

@ -28,11 +28,11 @@ mkdir -p ${LLVM_BUILD}
cd ${LLVM_BUILD}
if which cmake ; then
cmake -DCMAKE_PREFIX_PATH=${ISL_INSTALL} ${LLVM_SRC}
cmake ${LLVM_SRC}
make -j$procs -l$procs
make check-polly
else
${LLVM_SRC}/configure --with-isl=${ISL_INSTALL}
${LLVM_SRC}/configure
make -j$procs -l$procs
make check-polly -C tools/polly/test/
fi