Skip to content
Snippets Groups Projects
Commit f391115c authored by Adel Ejjeh's avatar Adel Ejjeh
Browse files

made change to installer to not compiler visc-rt separately

parent 277ef910
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ else ...@@ -34,6 +34,7 @@ else
echo $WGET $URL/$VERSION/$LLVM_SRC$SUFFIX echo $WGET $URL/$VERSION/$LLVM_SRC$SUFFIX
$WGET $URL/$VERSION/$LLVM_SRC$SUFFIX $WGET $URL/$VERSION/$LLVM_SRC$SUFFIX
tar xf $LLVM_SRC$SUFFIX tar xf $LLVM_SRC$SUFFIX
rm $LLVM_SRC$SUFFIX
fi fi
if [ -d $LLVM_SRC ]; then if [ -d $LLVM_SRC ]; then
...@@ -61,6 +62,7 @@ if [ -d clang ]; then ...@@ -61,6 +62,7 @@ if [ -d clang ]; then
else else
$WGET $URL/$VERSION/$CLANG_SRC$SUFFIX $WGET $URL/$VERSION/$CLANG_SRC$SUFFIX
tar xf $CLANG_SRC$SUFFIX tar xf $CLANG_SRC$SUFFIX
rm $CLANG_SRC$SUFFIX
mv $CLANG_SRC clang mv $CLANG_SRC clang
if [ -d clang ]; then if [ -d clang ]; then
echo Everything looks sane. echo Everything looks sane.
...@@ -84,6 +86,7 @@ if [ -d compiler-rt ]; then ...@@ -84,6 +86,7 @@ if [ -d compiler-rt ]; then
else else
$WGET $URL/$VERSION/$RT_SRC$SUFFIX $WGET $URL/$VERSION/$RT_SRC$SUFFIX
tar xf $RT_SRC$SUFFIX tar xf $RT_SRC$SUFFIX
rm $RT_SRC$SUFFIX
mv $RT_SRC compiler-rt mv $RT_SRC compiler-rt
if [ -d compiler-rt ]; then if [ -d compiler-rt ]; then
echo Everything looks sane. echo Everything looks sane.
...@@ -98,6 +101,7 @@ if [ -d libcxx ]; then ...@@ -98,6 +101,7 @@ if [ -d libcxx ]; then
else else
$WGET $URL/$VERSION/$LIBCXX_SRC$SUFFIX $WGET $URL/$VERSION/$LIBCXX_SRC$SUFFIX
tar xf $LIBCXX_SRC$SUFFIX tar xf $LIBCXX_SRC$SUFFIX
rm $LIBCXX_SRC$SUFFIX
mv $LIBCXX_SRC libcxx mv $LIBCXX_SRC libcxx
if [ -d libcxx ]; then if [ -d libcxx ]; then
echo Everything looks sane. echo Everything looks sane.
...@@ -113,6 +117,7 @@ if [ $LIBCXXABI_SRC != "" ]; then ...@@ -113,6 +117,7 @@ if [ $LIBCXXABI_SRC != "" ]; then
else else
$WGET $URL/$VERSION/$LIBCXXABI_SRC$SUFFIX $WGET $URL/$VERSION/$LIBCXXABI_SRC$SUFFIX
tar xf $LIBCXXABI_SRC$SUFFIX tar xf $LIBCXXABI_SRC$SUFFIX
rm $LIBCXXABI_SRC$SUFFIX
mv $LIBCXXABI_SRC libcxxabi mv $LIBCXXABI_SRC libcxxabi
if [ -d libcxxabi ]; then if [ -d libcxxabi ]; then
echo Everything looks sane. echo Everything looks sane.
...@@ -129,6 +134,7 @@ if [ $LLD_SRC != "" ]; then ...@@ -129,6 +134,7 @@ if [ $LLD_SRC != "" ]; then
else else
$WGET $URL/$VERSION/$LLD_SRC$SUFFIX $WGET $URL/$VERSION/$LLD_SRC$SUFFIX
tar xf $LLD_SRC$SUFFIX tar xf $LLD_SRC$SUFFIX
rm $LLD_SRC$SUFFIX
mv $LLD_SRC lld mv $LLD_SRC lld
if [ -d lld ]; then if [ -d lld ]; then
echo Everything looks sane. echo Everything looks sane.
...@@ -139,25 +145,20 @@ if [ $LLD_SRC != "" ]; then ...@@ -139,25 +145,20 @@ if [ $LLD_SRC != "" ]; then
fi fi
fi fi
echo Adding HPVM sources to tree HPVM_DIR=$CURRENT_DIR/$LLVM_SRC/tools/hpvm
if [ -d $CURRENT_DIR/$LLVM_SRC/tools/hpvm ]; then if [ ! -d $HPVM_DIR ]; then
mkdir $CURRENT_DIR/$LLVM_SRC/tools/hpvm echo Adding HPVM sources to tree
mkdir -p $HPVM_DIR
ln -s $CURRENT_DIR/CMakeLists.txt $HPVM_DIR
ln -s $CURRENT_DIR/include $HPVM_DIR/
ln -s $CURRENT_DIR/lib $HPVM_DIR/
ln -s $CURRENT_DIR/projects $HPVM_DIR/
ln -s $CURRENT_DIR/test $HPVM_DIR/
else else
echo $CURRENT_DIR/$LLVM_SRC/tools/hpvm exists. echo $CURRENT_DIR/$LLVM_SRC/tools/hpvm exists.
fi fi
HPVM_DIR=$CURRENT_DIR/$LLVM_SRC/tools/hpvm
mkdir -p $HPVM_DIR
ln -s $CURRENT_DIR/CMakeLists.txt $HPVM_DIR
ln -s $CURRENT_DIR/include $HPVM_DIR/
ln -s $CURRENT_DIR/lib $HPVM_DIR/
ln -s $CURRENT_DIR/projects $HPVM_DIR/
ln -s $CURRENT_DIR/test $HPVM_DIR/
ls $HPVM_DIR
export LLVM_SRC_ROOT=$CURRENT_DIR/$LLVM_SRC export LLVM_SRC_ROOT=$CURRENT_DIR/$LLVM_SRC
echo ${LLVM_SRC_ROOT}
echo Applying HPVM patches echo Applying HPVM patches
cd $CURRENT_DIR/llvm_patches cd $CURRENT_DIR/llvm_patches
...@@ -178,10 +179,10 @@ echo make -j$NUM_THREADS ...@@ -178,10 +179,10 @@ echo make -j$NUM_THREADS
make -j$NUM_THREADS make -j$NUM_THREADS
#make install #make install
echo Building HPVM runtime #echo Building HPVM runtime
HPVM_RT_DIR=$HPVM_DIR/projects/visc-rt #HPVM_RT_DIR=$HPVM_DIR/projects/visc-rt
cd $HPVM_RT_DIR #cd $HPVM_RT_DIR
make #make
#cp -r $CURRENT_DIR/projects $HPVM_DIR/ #cp -r $CURRENT_DIR/projects $HPVM_DIR/
#make -j$NUM_THREADS #make -j$NUM_THREADS
......
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