Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_vcluster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_vcluster
Commits
b5261194
Commit
b5261194
authored
4 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Reinstalling BOOST
parent
f4d20b38
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2554
failed
4 years ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
build.sh
+1
-0
1 addition, 0 deletions
build.sh
install_BOOST.sh
+19
-4
19 additions, 4 deletions
install_BOOST.sh
with
21 additions
and
5 deletions
CMakeLists.txt
+
1
−
1
View file @
b5261194
...
...
@@ -42,7 +42,7 @@ elseif ( CUDA_VERSION_MAJOR EQUAL 11 AND CUDA_VERSION_MINOR EQUAL 0 )
endif
()
find_package
(
Boost 1.
66
.0 REQUIRED COMPONENTS unit_test_framework iostreams program_options OPTIONAL_COMPONENTS fiber context
)
find_package
(
Boost 1.
72
.0 REQUIRED COMPONENTS unit_test_framework iostreams program_options OPTIONAL_COMPONENTS fiber context
)
find_package
(
MPI REQUIRED
)
find_package
(
PETSc
)
...
...
This diff is collapsed.
Click to expand it.
build.sh
+
1
−
0
View file @
b5261194
...
...
@@ -43,6 +43,7 @@ fi
# kill 73440 87662 87661 73439 51687 51686
#fi
rm
-rf
$HOME
/openfpm_dependencies/openfpm_vcluster/BOOST
if
[
!
-d
$HOME
/openfpm_dependencies/openfpm_vcluster/BOOST
]
;
then
if
[
x
"
$hostname
"
==
x
"cifarm-mac-node"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
install_BOOST.sh
+
19
−
4
View file @
b5261194
...
...
@@ -7,11 +7,26 @@ if [ -d "$1/BOOST" ]; then
exit
0
fi
wget http://ppmcore.mpi-cbg.de/upload/boost_1_68_0.tar.bz2
tar
-xvf
boost_1_68_0.tar.bz2
cd
boost_1_68_0
wget http://ppmcore.mpi-cbg.de/upload/boost_1_72_0.tar.bz2
tar
-xvf
boost_1_72_0.tar.bz2
cd
boost_1_72_0
if
[
x
"
$4
"
!=
x
""
]
;
then
if
[
-f
$HOME
/user-config.jam
]
;
then
mv
$HOME
/user-config.jam
$HOME
/user-config.jam_bck
fi
if
[
x
"
$5
"
!=
x
""
]
;
then
echo
"using gcc :
$5
.
$6
:
$4
; "
>
$HOME
/user-config.jam
else
echo
"using gcc : :
$4
; "
>
$HOME
/user-config.jam
fi
fi
./bootstrap.sh
--with-toolset
=
$3
mkdir
$1
/BOOST
./b2
-j
$2
install
--prefix
=
$1
/BOOST
rm
-rf
boost_1_68_0
rm
-rf
boost_1_72_0
if
[
-f
$HOME
/user-config.jam_bck
]
;
then
mv
$HOME
/user-config.jam_bck
$HOME
/user-config.jam
fi
rm
-rf
boost_1_72_0.tar.bz2
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