[polly] r297710 - Preserve the isl-noexceptions.h C++ bindings when updating isl
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 14 00:46:28 PDT 2017
Author: grosser
Date: Tue Mar 14 02:46:28 2017
New Revision: 297710
URL: http://llvm.org/viewvc/llvm-project?rev=297710&view=rev
Log:
Preserve the isl-noexceptions.h C++ bindings when updating isl
The bindings currently need to be generated manually, as they are not yet
part of the official isl distribution. Hence, we keep them across updates
assuming they only need to be updated when new functions or functionality
should be exposed.
Modified:
polly/trunk/lib/External/update-isl.sh
Modified: polly/trunk/lib/External/update-isl.sh
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/External/update-isl.sh?rev=297710&r1=297709&r2=297710&view=diff
==============================================================================
--- polly/trunk/lib/External/update-isl.sh (original)
+++ polly/trunk/lib/External/update-isl.sh Tue Mar 14 02:46:28 2017
@@ -23,8 +23,11 @@ mkdir -p $BUILDDIR
for DISTFILE in "$BUILDDIR/isl*.tar.gz"; do break; done
+cp $ISL_SOURCE_DIR/include/isl-noexceptions.h $TMPDIR/isl-noexceptions.h
+
rm -rf $ISL_SOURCE_DIR
mkdir -p $ISL_SOURCE_DIR
tar -xf $DISTFILE --strip-components=1 --directory $ISL_SOURCE_DIR
+cp $TMPDIR/isl-noexceptions.h $ISL_SOURCE_DIR/include/
rm -rf $TMPDIR
More information about the llvm-commits
mailing list