Make update-isl work with latest isl versions

Latest isl versions require clang to build a 'dist' package. Make sure
we actually ask for it.

While being there, also make sure we build isl on all cores.

git-svn-id: https://llvm.org/svn/llvm-project/polly/trunk@339094 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/External/update-isl.sh b/lib/External/update-isl.sh
index 0bf3e0d..c4b9da4 100755
--- a/lib/External/update-isl.sh
+++ b/lib/External/update-isl.sh
@@ -18,8 +18,9 @@
 fi
 (cd $GITDIR && ./autogen.sh)
 mkdir -p $BUILDDIR
-(cd $BUILDDIR && $GITDIR/configure --with-int=imath-32)
-(cd $BUILDDIR && make dist)
+(cd $BUILDDIR && $GITDIR/configure --with-int=imath-32 --with-clang=system)
+touch $GITDIR/gitversion.h
+(cd $BUILDDIR && make -j dist)
 
 for DISTFILE in "$BUILDDIR/isl*.tar.gz"; do break; done