Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
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
w2w
autoicon
Commits
f3f8395e
Commit
f3f8395e
authored
1 year ago
by
Fabian.Jakub
Browse files
Options
Downloads
Patches
Plain Diff
add variant to icon-nwp package to add debug compiler flags
parent
5d1cc4cd
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
spack_repo/packages/icon-nwp/package.py
+8
-1
8 additions, 1 deletion
spack_repo/packages/icon-nwp/package.py
with
8 additions
and
1 deletion
spack_repo/packages/icon-nwp/package.py
+
8
−
1
View file @
f3f8395e
...
@@ -38,6 +38,7 @@ class IconNwp(Package):
...
@@ -38,6 +38,7 @@ class IconNwp(Package):
variant
(
"
plexrt
"
,
default
=
False
,
description
=
"
add 3D radiation support with TenStream
"
)
variant
(
"
plexrt
"
,
default
=
False
,
description
=
"
add 3D radiation support with TenStream
"
)
variant
(
"
petsc
"
,
default
=
False
,
description
=
"
add PETSc support
"
)
variant
(
"
petsc
"
,
default
=
False
,
description
=
"
add PETSc support
"
)
variant
(
"
debug
"
,
default
=
False
,
description
=
"
add debug flags when compiling icon
"
)
# Dependencies
# Dependencies
depends_on
(
"
mpi
"
)
depends_on
(
"
mpi
"
)
...
@@ -202,7 +203,6 @@ class IconNwp(Package):
...
@@ -202,7 +203,6 @@ class IconNwp(Package):
f
"
ICON_BUNDLED_CFLAGS=-O3 -mtune=
{
mtune
}
"
,
f
"
ICON_BUNDLED_CFLAGS=-O3 -mtune=
{
mtune
}
"
,
f
"
CPPFLAGS=
{
'
'
.
join
(
CPPFLAGS
)
}
"
,
f
"
CPPFLAGS=
{
'
'
.
join
(
CPPFLAGS
)
}
"
,
"
FCFLAGS=-std=legacy -fmodule-private -fimplicit-none -fmax-identifier-length=63 -Wall -Wcharacter-truncation -Wconversion -Wunderflow -Wunused-parameter -Wno-surprising -fall-intrinsics -g -mpc64 -w
"
,
"
FCFLAGS=-std=legacy -fmodule-private -fimplicit-none -fmax-identifier-length=63 -Wall -Wcharacter-truncation -Wconversion -Wunderflow -Wunused-parameter -Wno-surprising -fall-intrinsics -g -mpc64 -w
"
,
"
ICON_FCFLAGS=-fbacktrace -fbounds-check -fstack-protector-all -finit-real=nan -finit-integer=-2147483648 -finit-character=127 -w -O2
"
,
f
"
ICON_OCEAN_FCFLAGS=-O3 -mtune=
{
mtune
}
"
,
f
"
ICON_OCEAN_FCFLAGS=-O3 -mtune=
{
mtune
}
"
,
f
"
LDFLAGS=
{
'
'
.
join
(
libs
)
}
"
,
f
"
LDFLAGS=
{
'
'
.
join
(
libs
)
}
"
,
f
"
LIBS=
{
'
'
.
join
(
libs
)
}
"
,
f
"
LIBS=
{
'
'
.
join
(
libs
)
}
"
,
...
@@ -210,6 +210,13 @@ class IconNwp(Package):
...
@@ -210,6 +210,13 @@ class IconNwp(Package):
f
"
--enable-grib2
"
,
f
"
--enable-grib2
"
,
]
]
ICON_FCFLAGS
=
"
-std=f2008 -fallow-argument-mismatch -fmodule-private -fimplicit-none -Wall
"
if
"
+debug
"
in
self
.
spec
:
options
.
append
(
f
"
ICON_FCFLAGS=
{
ICON_FCFLAGS
}
-fbacktrace -fbounds-check -fstack-protector-all -finit-real=nan -finit-integer=-2147483648 -finit-character=127 -w -O2
"
)
else
:
options
.
append
(
f
"
ICON_FCFLAGS=
{
ICON_FCFLAGS
}
-O3
"
)
# For some reason there's a problem with OpenMPI with gcc@11.3.0 which makes the configuration fail.
# For some reason there's a problem with OpenMPI with gcc@11.3.0 which makes the configuration fail.
if
self
.
spec
.
compiler
.
name
==
"
gcc
"
and
self
.
spec
.
compiler
.
version
==
Version
(
"
11.3.0
"
):
if
self
.
spec
.
compiler
.
name
==
"
gcc
"
and
self
.
spec
.
compiler
.
version
==
Version
(
"
11.3.0
"
):
options
.
append
(
"
--enable-mpi-checks=no
"
)
options
.
append
(
"
--enable-mpi-checks=no
"
)
...
...
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