esmf: add static netcdf-c support (#34579)

This commit is contained in:
Alex Richert 2023-04-04 01:01:21 -07:00 committed by GitHub
parent c3b0806f6c
commit 5da231969e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -343,6 +343,11 @@ def setup_build_environment(self, env):
# NetCDF format.
env.set("ESMF_NETCDF", "nc-config")
env.set("ESMF_NFCONFIG", "nf-config")
netcdfc = spec["netcdf-c"]
if netcdfc.satisfies("~shared"):
nc_config = which(os.path.join(netcdfc.prefix.bin, "nc-config"))
nc_flags = nc_config("--libs", output=str).strip()
env.set("ESMF_NETCDF_LIBS", nc_flags)
###################
# Parallel-NetCDF #