Skip to content
Snippets Groups Projects
Commit c3a28290 authored by Akash Kothari's avatar Akash Kothari
Browse files

Do not download libcxx and libcxxabi

parent bd7dbbea
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,6 @@ NUM_THREADS=2 ...@@ -16,8 +16,6 @@ NUM_THREADS=2
SUFFIX=".tar.xz" SUFFIX=".tar.xz"
CLANG_SRC="cfe-$VERSION.src" CLANG_SRC="cfe-$VERSION.src"
LLVM_SRC="llvm-$VERSION.src" LLVM_SRC="llvm-$VERSION.src"
LIBCXX_SRC="libcxx-$VERSION.src"
LIBCXXABI_SRC="libcxxabi-$VERSION.src"
HPVM_RT=hpvm-rt/hpvm-rt.bc HPVM_RT=hpvm-rt/hpvm-rt.bc
...@@ -96,38 +94,6 @@ else ...@@ -96,38 +94,6 @@ else
exit 1 exit 1
fi fi
if [ -d libcxx ]; then
echo Found libcxx! Not downloading libcxx again.
else
$WGET $URL/$VERSION/$LIBCXX_SRC$SUFFIX
tar xf $LIBCXX_SRC$SUFFIX
rm $LIBCXX_SRC$SUFFIX
mv $LIBCXX_SRC libcxx
if [ -d libcxx ]; then
echo Everything looks sane.
else
echo Install had problems. Quitting.
exit
fi
fi
if [ $LIBCXXABI_SRC != "" ]; then
if [ -d libcxxabi ]; then
echo Found libcxxabi! Not downloading libcxx again.
else
$WGET $URL/$VERSION/$LIBCXXABI_SRC$SUFFIX
tar xf $LIBCXXABI_SRC$SUFFIX
rm $LIBCXXABI_SRC$SUFFIX
mv $LIBCXXABI_SRC libcxxabi
if [ -d libcxxabi ]; then
echo Everything looks sane.
else
echo Install had problems. Quitting.
exit
fi
fi
fi
HPVM_DIR=$CURRENT_DIR/$LLVM_SRC/tools/hpvm HPVM_DIR=$CURRENT_DIR/$LLVM_SRC/tools/hpvm
if [ ! -d $HPVM_DIR ]; then if [ ! -d $HPVM_DIR ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment