Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YACO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
YACO
Commits
a764fa4b
Commit
a764fa4b
authored
4 months ago
by
Siddhant Tibrewal
Browse files
Options
Downloads
Patches
Plain Diff
fixes for cases where there are no compiler wrappers available
parent
87187651
No related branches found
Branches containing commit
No related tags found
1 merge request
!46
Build process for multiple compilers across different machines
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scripts/setup/build-dependencies.sh
+1
-1
1 addition, 1 deletion
scripts/setup/build-dependencies.sh
scripts/setup/lumi.cce-16.0.1.sh
+2
-2
2 additions, 2 deletions
scripts/setup/lumi.cce-16.0.1.sh
scripts/setup/lumi.cce-17.0.1.sh
+2
-2
2 additions, 2 deletions
scripts/setup/lumi.cce-17.0.1.sh
with
5 additions
and
5 deletions
scripts/setup/build-dependencies.sh
+
1
−
1
View file @
a764fa4b
...
...
@@ -2,7 +2,7 @@
# More safety by turning some bugs into errors.
# Without `errexit` you don’t need ! and can replace
# ${PIPESTATUS[0]} with a simple $?, but I prefer safety.
set
-o
errexit
-o
pipefail
-o
noclobber
-o
nounset
set
-o
errexit
-o
pipefail
-o
noclobber
REPO_TAG_AEC
=
"v1.1.2"
REPO_TAG_ECBUILD
=
"3.8.0"
...
...
This diff is collapsed.
Click to expand it.
scripts/setup/lumi.cce-16.0.1.sh
+
2
−
2
View file @
a764fa4b
...
...
@@ -34,11 +34,11 @@ INSTALL_PATH=$BUILD_PATH/install
# build dependencies for yaco
echo
"=== Building yaco dependencies ==="
echo
$DEPENDENCY_TO_BUILD
CC
=
"
${
CC
}
"
CXX
=
"
${
CXX
}
"
FC
=
"
${
FC
}
"
$ABSOLUTE_YACO_ROOT
/scripts/setup/build-dependencies.sh
-j
$THREADS
--dependency
$DEPENDENCY_TO_BUILD
--build_dir_name
$COMPILER
--prefix_path
$INSTALL_PATH
$ABSOLUTE_YACO_ROOT
/scripts/setup/build-dependencies.sh
-j
$THREADS
--dependency
$DEPENDENCY_TO_BUILD
--build_dir_name
$COMPILER
--prefix_path
$INSTALL_PATH
# build yaco
echo
"=== Building yaco ==="
cd
"
$BUILD_PATH
"
CC
=
"
${
CC
}
"
CXX
=
"
${
CXX
}
"
FC
=
"
${
FC
}
"
cmake
$ABSOLUTE_YACO_ROOT
-DCMAKE_PREFIX_PATH
=
$INSTALL_PATH
-DENABLE_NETCDF
=
OFF
-DCMAKE_EXPORT_COMPILE_COMMANDS
=
ON
-DCMAKE_BUILD_TYPE
=
Release
cmake
$ABSOLUTE_YACO_ROOT
-DCMAKE_PREFIX_PATH
=
$INSTALL_PATH
-DENABLE_NETCDF
=
OFF
-DCMAKE_EXPORT_COMPILE_COMMANDS
=
ON
-DCMAKE_BUILD_TYPE
=
Release
cmake
--build
.
-j
$THREADS
cmake
--install
.
--prefix
=
$INSTALL_PATH
This diff is collapsed.
Click to expand it.
scripts/setup/lumi.cce-17.0.1.sh
+
2
−
2
View file @
a764fa4b
...
...
@@ -34,11 +34,11 @@ INSTALL_PATH=$BUILD_PATH/install
# build dependencies for yaco
echo
"=== Building yaco dependencies ==="
echo
$DEPENDENCY_TO_BUILD
CC
=
"
${
CC
}
"
CXX
=
"
${
CXX
}
"
FC
=
"
${
FC
}
"
$ABSOLUTE_YACO_ROOT
/scripts/setup/build-dependencies.sh
-j
$THREADS
--dependency
$DEPENDENCY_TO_BUILD
--build_dir_name
$COMPILER
--prefix_path
$INSTALL_PATH
$ABSOLUTE_YACO_ROOT
/scripts/setup/build-dependencies.sh
-j
$THREADS
--dependency
$DEPENDENCY_TO_BUILD
--build_dir_name
$COMPILER
--prefix_path
$INSTALL_PATH
# build yaco
echo
"=== Building yaco ==="
cd
"
$BUILD_PATH
"
CC
=
"
${
CC
}
"
CXX
=
"
${
CXX
}
"
FC
=
"
${
FC
}
"
cmake
$ABSOLUTE_YACO_ROOT
-DCMAKE_PREFIX_PATH
=
$INSTALL_PATH
-DENABLE_NETCDF
=
OFF
-DCMAKE_EXPORT_COMPILE_COMMANDS
=
ON
-DCMAKE_BUILD_TYPE
=
Release
cmake
$ABSOLUTE_YACO_ROOT
-DCMAKE_PREFIX_PATH
=
$INSTALL_PATH
-DENABLE_NETCDF
=
OFF
-DCMAKE_EXPORT_COMPILE_COMMANDS
=
ON
-DCMAKE_BUILD_TYPE
=
Release
cmake
--build
.
-j
$THREADS
cmake
--install
.
--prefix
=
$INSTALL_PATH
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