Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
88dc77ac
Commit
88dc77ac
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Update LLVM installer script to copy HPVM into LLVM tree
parent
91d676fb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/llvm_installer/llvm_installer.sh
+134
-4
134 additions, 4 deletions
hpvm/llvm_installer/llvm_installer.sh
with
134 additions
and
4 deletions
hpvm/llvm_installer/llvm_installer.sh
+
134
−
4
View file @
88dc77ac
...
@@ -4,17 +4,29 @@ VERSION="9.0.0"
...
@@ -4,17 +4,29 @@ VERSION="9.0.0"
URL
=
"http://releases.llvm.org"
URL
=
"http://releases.llvm.org"
SUFFIX
=
".tar.xz"
LLVM_SRC
=
"llvm-
$VERSION
.src"
WGET
=
wget
WGET
=
wget
cd
..
CURRENT_DIR
=
`
pwd
`
CURRENT_DIR
=
`
pwd
`
INSTALL_DIR
=
`
pwd
`
/install
INSTALL_DIR
=
`
pwd
`
/install
BUILD_DIR
=
$CURRENT_DIR
/
$LLVM_SRC
/build
BUILD_DIR
=
$CURRENT_DIR
/
$LLVM_SRC
/build
NUM_THREADS
=
12
NUM_THREADS
=
12
SUFFIX
=
".tar.xz"
CLANG_SRC
=
"cfe-
$VERSION
.src"
LLVM_SRC
=
"llvm-
$VERSION
.src"
RT_SRC
=
"compiler-rt-
$VERSION
.src"
LIBCXX_SRC
=
"libcxx-
$VERSION
.src"
LIBCXXABI_SRC
=
"libcxxabi-
$VERSION
.src"
LLDB_SRC
=
"lldb-
$VERSION
.src"
LLD_SRC
=
"lld-
$VERSION
.src"
POLLY_SRC
=
"polly-
$VERSION
.src"
OPENMP_SRC
=
"openmp-
$VERSION
.src"
CLANG_TOOLS_SRC
=
"clang-tools-extra-
$VERSION
.src"
if
[
-d
$LLVM_SRC
]
;
then
if
[
-d
$LLVM_SRC
]
;
then
echo
Found
$LLVM_SRC
!
echo
Found
$LLVM_SRC
!
else
else
...
@@ -23,8 +35,126 @@ else
...
@@ -23,8 +35,126 @@ else
tar
xf
$LLVM_SRC$SUFFIX
tar
xf
$LLVM_SRC$SUFFIX
fi
fi
if
[
-d
$LLVM_SRC
]
;
then
echo
Everything looks sane.
mv
$LLVM_SRC
llvm
else
echo
Install had problems. Quitting.
exit
fi
LLVM_SRC
=
llvm
if
[
-d
$CURRENT_DIR
/
$LLVM_SRC
/tools
]
;
then
cd
$CURRENT_DIR
/
$LLVM_SRC
/tools
echo
In tools.
else
echo
Fail! Something is wrong with your
$LLVM_SRC
checkout!
exit
1
fi
if
[
-d
clang
]
;
then
echo
Found clang! Not downloading clang again.
else
$WGET
$URL
/
$VERSION
/
$CLANG_SRC$SUFFIX
tar
xf
$CLANG_SRC$SUFFIX
mv
$CLANG_SRC
clang
if
[
-d
clang
]
;
then
echo
Everything looks sane.
else
echo
Install had problems. Quitting.
exit
fi
fi
cd
$CURRENT_DIR
cd
$CURRENT_DIR
if
[
-d
$CURRENT_DIR
/
$LLVM_SRC
/projects
]
;
then
cd
$CURRENT_DIR
/
$LLVM_SRC
/projects
else
echo
Fail! Something is wrong wint
$LLVM_SRC
.
exit
1
fi
if
[
-d
compiler-rt
]
;
then
echo
Found compiler-rt! Not downloading compiler-rt again.
else
$WGET
$URL
/
$VERSION
/
$RT_SRC$SUFFIX
tar
xf
$RT_SRC$SUFFIX
mv
$RT_SRC
compiler-rt
if
[
-d
compiler-rt
]
;
then
echo
Everything looks sane.
else
echo
Install had problems. Quitting.
exit
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
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
mv
$LIBCXXABI_SRC
libcxxabi
if
[
-d
libcxxabi
]
;
then
echo
Everything looks sane.
else
echo
Install had problems. Quitting.
exit
fi
fi
fi
if
[
$LLD_SRC
!=
""
]
;
then
if
[
-d
lld
]
;
then
echo
Found lld! Not downloading lld again.
else
$WGET
$URL
/
$VERSION
/
$LLD_SRC$SUFFIX
tar
xf
$LLD_SRC$SUFFIX
mv
$LLD_SRC
lld
if
[
-d
lld
]
;
then
echo
Everything looks sane.
else
echo
Install had problems. Quitting.
exit
fi
fi
fi
mkdir
$CURRENT_DIR
/
$LLVM_SRC
/tools/hpvm
HPVM_DIR
=
$CURRENT_DIR
/
$LLVM_SRC
/tools/hpvm
cp
-r
$CURRENT_DIR
/include
$HPVM_DIR
/
cp
-r
$CURRENT_DIR
/lib
$HPVM_DIR
/
cp
-r
$CURRENT_DIR
/visc-rt
$HPVM_DIR
/
cp
-r
$CURRENT_DIR
/test
$HPVM_DIR
/
export
LLVM_SRC_ROOT
=
$CURRENT_DIR
/
$LLVM_SRC
echo
${
LLVM_SRC_ROOT
}
cd
$CURRENT_DIR
/llvm_patches
/bin/bash ./construct_patch.sh
/bin/bash ./apply_patch.sh
echo
Patches applied.
if
[
-d
$BUILD_DIR
]
;
then
if
[
-d
$BUILD_DIR
]
;
then
cd
$BUILD_DIR
cd
$BUILD_DIR
echo
Found
$BUILD_DIR
.
echo
Found
$BUILD_DIR
.
...
@@ -32,7 +162,7 @@ else
...
@@ -32,7 +162,7 @@ else
mkdir
-p
$BUILD_DIR
mkdir
-p
$BUILD_DIR
mkdir
-p
$INSTALL_DIR
mkdir
-p
$INSTALL_DIR
cd
$BUILD_DIR
cd
$BUILD_DIR
cmake
-DCMAKE_BUILD_TYPE
=
MinSizeRel
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-DCMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
-DLLVM_OPTIMIZED_TABLEGEN
=
On ..
cmake
../
$LLVM_SRC
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-D
LLVM_TARGETS_TO_BUILD
=
"X86;NVPTX"
-D
CMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
fi
fi
make
-j
$NUM_THREADS
make
-j
$NUM_THREADS
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment