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

Fixing errors in installer and testing scripts

parent 4f8007cf
No related branches found
No related tags found
No related merge requests found
...@@ -2,10 +2,12 @@ ...@@ -2,10 +2,12 @@
CURRENT_DIR=`pwd` CURRENT_DIR=`pwd`
BUILD_DIR=$CURRENT_DIR/build BUILD_DIR=$CURRENT_DIR/build
HPVM_RT=hpvm-rt/hpvm-rt.bc
if [ -x $BUILD_DIR/tools/hpvm/projects/$HPVM_RT ]; then if [ -f $BUILD_DIR/tools/hpvm/projects/$HPVM_RT ]; then
true true
else else
echo $BUILD_DIR/tools/hpvm/projects/$HPVM_RT
echo HPVM not installed! Exiting without running tests!. echo HPVM not installed! Exiting without running tests!.
exit 0 exit 0
fi fi
......
...@@ -19,7 +19,7 @@ LLVM_SRC="llvm-$VERSION.src" ...@@ -19,7 +19,7 @@ LLVM_SRC="llvm-$VERSION.src"
LIBCXX_SRC="libcxx-$VERSION.src" LIBCXX_SRC="libcxx-$VERSION.src"
LIBCXXABI_SRC="libcxxabi-$VERSION.src" LIBCXXABI_SRC="libcxxabi-$VERSION.src"
HPVM_RT=hpvm-rt.bc HPVM_RT=hpvm-rt/hpvm-rt.bc
AUTOMATE="y" AUTOMATE="y"
...@@ -182,9 +182,10 @@ make -j$NUM_THREADS ...@@ -182,9 +182,10 @@ make -j$NUM_THREADS
#make install #make install
if [ -x $BUILD_DIR/tools/hpvm/projects/$HPVM_RT ]; then if [ -f $BUILD_DIR/tools/hpvm/projects/$HPVM_RT ]; then
true true
else else
echo $BUILD_DIR/tools/hpvm/projects/$HPVM_RT
echo HPVM not installed properly. echo HPVM not installed properly.
exit 0 exit 0
fi fi
......
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