Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfpm_pdata
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
argupta
openfpm_pdata
Commits
a6116719
Commit
a6116719
authored
7 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing gin compilation
parent
1e984b74
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build.sh
+1
-2
1 addition, 2 deletions
build.sh
script/detect_gcc
+23
-0
23 additions, 0 deletions
script/detect_gcc
script/remove_old
+1
-0
1 addition, 0 deletions
script/remove_old
with
25 additions
and
2 deletions
build.sh
+
1
−
2
View file @
a6116719
...
...
@@ -29,14 +29,13 @@ then
echo
1
>
$HOME
/
$5
/MPI/version
fi
module load gcc/4.9.2
### Activate MPI ###
export
PATH
=
"
$PATH
:
$HOME
/
$5
/MPI/bin"
mkdir
$HOME
/
$5
if
[
x
"
$4
"
==
x
"full"
]
;
then
./install
-i
$HOME
/
$5
-s
-c
"--prefix=/home/jenkins/openfpm_install"
./install
CC
=
gcc-4.9.2
CXX
=
g++-4.9.2
FC
=
gfortran-4.9.2
F77
=
gfortran-4.9.2
-i
$HOME
/
$5
-s
-c
"--prefix=/home/jenkins/openfpm_install"
mv
$HOME
/openfpm_vars
$HOME
/openfpm_vars_
$5
source
$HOME
/openfpm_vars_
$5
elif
[
x
"
$3
"
==
x
"numerics"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
script/detect_gcc
+
23
−
0
View file @
a6116719
...
...
@@ -23,6 +23,29 @@ function detect_compiler()
dgc_ret
=
0
if
[
x
"
$CXX
"
!=
x
""
-o
x
"
$CC
"
!=
x
""
-o
x
"
$F77
"
!=
x
""
-o
x
"
$FC
"
!=
x
""
]
;
then
if
[
$CXX
]
echo
-e
"
\0
33[1;34;5m ----------------------------------------------------------------------
\0
33[0m"
echo
-e
"
\0
33[1;34;5m Selected compilers
\0
33[0m"
echo
-e
"
\0
33[1;34;5m ----------------------------------------------------------------------
\0
33[0m"
echo
-e
"
\0
33[91;1m The user request to use specifics compilers to compile C/C++ or Fortran code
\0
33[0m"
echo
-e
"
\0
33[91;1m specifing one or more of these variables CXX/CC/F77/FC. When at least one is
\0
33[0m"
echo
-e
"
\0
33[91;1m defined the specified compiler will be used.
\0
33[0m"
echo
-e
"
\0
33[91;1m When not specified the system will use the default g++/gcc/gfortran/gfortran
\0
33[0m"
echo
-e
"
\0
33[91;1m The installer will use the following compilers
\0
33[0m"
echo
-e
""
echo
-e
"CXX=
$CXX
"
echo
-e
"CC=
$CC
"
echo
-e
"F77=
$F77
"
echo
-e
"FC=
$FC
"
return
fi
# First we try to understand if g++ command line is linked to clang
g++
--version
|
grep
"Apple LLVM"
...
...
This diff is collapsed.
Click to expand it.
script/remove_old
+
1
−
0
View file @
a6116719
...
...
@@ -156,6 +156,7 @@ function remove_old()
echo
-e
"
\0
33[1;34;5m OPENBLAS has been updated, the component will be updated automatically
\0
33[0m"
echo
-e
"
\0
33[1;34;5m ----------------------------------------------------------------------
\0
33[0m"
sleep
5
rm
-rf
$1
/OPENBLAS
rm
-rf
$1
/EIGEN
rm
-rf
$1
/PETSC
rm
-rf
$1
/SUITESPARSE
...
...
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