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
36195593
Commit
36195593
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Updating llvm installer to accept number of threads from user
parent
7df813cf
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
+38
-8
38 additions, 8 deletions
hpvm/llvm_installer/llvm_installer.sh
with
38 additions
and
8 deletions
hpvm/llvm_installer/llvm_installer.sh
+
38
−
8
View file @
36195593
...
@@ -6,12 +6,12 @@ URL="http://releases.llvm.org"
...
@@ -6,12 +6,12 @@ URL="http://releases.llvm.org"
WGET
=
wget
WGET
=
wget
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
=
16
# Using 2 threads by default
NUM_THREADS
=
2
SUFFIX
=
".tar.xz"
SUFFIX
=
".tar.xz"
CLANG_SRC
=
"cfe-
$VERSION
.src"
CLANG_SRC
=
"cfe-
$VERSION
.src"
...
@@ -19,11 +19,7 @@ LLVM_SRC="llvm-$VERSION.src"
...
@@ -19,11 +19,7 @@ LLVM_SRC="llvm-$VERSION.src"
RT_SRC
=
"compiler-rt-
$VERSION
.src"
RT_SRC
=
"compiler-rt-
$VERSION
.src"
LIBCXX_SRC
=
"libcxx-
$VERSION
.src"
LIBCXX_SRC
=
"libcxx-
$VERSION
.src"
LIBCXXABI_SRC
=
"libcxxabi-
$VERSION
.src"
LIBCXXABI_SRC
=
"libcxxabi-
$VERSION
.src"
LLDB_SRC
=
"lldb-
$VERSION
.src"
LLD_SRC
=
"lld-
$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
...
@@ -146,6 +142,7 @@ if [ $LLD_SRC != "" ]; then
...
@@ -146,6 +142,7 @@ if [ $LLD_SRC != "" ]; then
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
echo
Adding HPVM sources to tree
echo
Adding HPVM sources to tree
mkdir
-p
$HPVM_DIR
mkdir
-p
$HPVM_DIR
...
@@ -166,11 +163,44 @@ cd $CURRENT_DIR/llvm_patches
...
@@ -166,11 +163,44 @@ cd $CURRENT_DIR/llvm_patches
/bin/bash ./apply_patch.sh
/bin/bash ./apply_patch.sh
echo
Patches applied.
echo
Patches applied.
echo
AUTOMATE
=
"y"
read
-n
1
-p
"Build and install HPVM automatically? (y or n): "
AUTOMATE
if
[
!
$AUTOMATE
==
"y"
]
;
then
echo
echo
HPMV not installed. Exiting.
exit
fi
echo
echo
read
-n
2
-p
"Number of threads: "
NUM_THREADS
if
[
!
$NUM_THREADS
-gt
0
]
;
then
NUM_THREADS
=
2
echo
echo
Using
$NUM_THREADS
threads by default.
fi
echo
echo
Now building...
echo
Now building...
mkdir
-p
$BUILD_DIR
echo
Using
$NUM_THREADS
threads to build HPVM.
mkdir
-p
$INSTALL_DIR
echo
cd
$CURRENT_DIR
if
[
!
-d
$BUILD_DIR
]
;
then
mkdir
-p
$BUILD_DIR
fi
if
[
!
-d
$INSTALL_DIR
]
;
then
mkdir
-p
$INSTALL_DIR
fi
cd
$BUILD_DIR
cd
$BUILD_DIR
echo
cmake ../
$LLVM_SRC
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-DLLVM_TARGETS_TO_BUILD
=
"X86"
-DCMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
echo
cmake ../
$LLVM_SRC
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-DLLVM_TARGETS_TO_BUILD
=
"X86"
-DCMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
cmake ../
$LLVM_SRC
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-DLLVM_TARGETS_TO_BUILD
=
"X86"
-DCMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
cmake ../
$LLVM_SRC
-DCMAKE_C_COMPILER
=
gcc
-DCMAKE_CXX_COMPILER
=
g++
-DLLVM_TARGETS_TO_BUILD
=
"X86"
-DCMAKE_INSTALL_PREFIX
=
$INSTALL_DIR
...
...
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