Skip to content
Snippets Groups Projects
Commit f3f8395e authored by Fabian.Jakub's avatar Fabian.Jakub
Browse files

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
...@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment