Skip to content
Snippets Groups Projects
Commit 17acbe1a authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Trying to fix B6-w2w compilation. Problem with zfp includes.

parent fb3f1d71
No related branches found
No related tags found
1 merge request!9Build only
Pipeline #19233 passed
...@@ -187,7 +187,7 @@ class IconNwp(Package): ...@@ -187,7 +187,7 @@ class IconNwp(Package):
def configure(self, spec, prefix): def configure(self, spec, prefix):
spec = self.spec spec = self.spec
print(spec["mpi"].mpifc) INCLUDES = [f"-I{spec['libxml2'].prefix}/include/libxml2", ]
libs = [ libs = [
f"-L{spec['netcdf-c'].prefix.lib} -lnetcdf ", # netcdf-c libs f"-L{spec['netcdf-c'].prefix.lib} -lnetcdf ", # netcdf-c libs
...@@ -203,9 +203,9 @@ class IconNwp(Package): ...@@ -203,9 +203,9 @@ class IconNwp(Package):
if self.spec.version == Version("w2w-B6"): if self.spec.version == Version("w2w-B6"):
libs.append("-lyaml") libs.append("-lyaml")
INCLUDES.append(f'-I{spec["zfp"].prefix.inc}')
mtune = "generic" mtune = "generic"
INCLUDES = [f"-I{spec['libxml2'].prefix}/include/libxml2", ]
CPPFLAGS = [] CPPFLAGS = []
if "+plexrt" in self.spec: if "+plexrt" in self.spec:
......
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