summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Richert <82525672+AlexanderRichert-NOAA@users.noreply.github.com>2022-12-17 03:27:22 -0800
committerGitHub <noreply@github.com>2022-12-17 04:27:22 -0700
commit50570ea33491b3df7ca74c0be03a6c7519f7ceae (patch)
tree624715285211b64c07b28e4ce50a5924e7e58e6b
parent7e836b925d4b16b605ddc4d901351ac165617c56 (diff)
downloadspack-50570ea33491b3df7ca74c0be03a6c7519f7ceae.tar.gz
spack-50570ea33491b3df7ca74c0be03a6c7519f7ceae.tar.bz2
spack-50570ea33491b3df7ca74c0be03a6c7519f7ceae.tar.xz
spack-50570ea33491b3df7ca74c0be03a6c7519f7ceae.zip
Add static-only option for ESMF (#34576)
-rw-r--r--var/spack/repos/builtin/packages/esmf/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/esmf/package.py b/var/spack/repos/builtin/packages/esmf/package.py
index 885ca3817e..31c97b2003 100644
--- a/var/spack/repos/builtin/packages/esmf/package.py
+++ b/var/spack/repos/builtin/packages/esmf/package.py
@@ -89,6 +89,7 @@ class Esmf(MakefilePackage):
when="@8.3.0b09",
)
variant("debug", default=False, description="Make a debuggable version of the library")
+ variant("shared", default=True, description="Build shared library")
# Required dependencies
depends_on("zlib")
@@ -358,6 +359,10 @@ class Esmf(MakefilePackage):
# ESMF_XERCES_INCLUDE
# ESMF_XERCES_LIBPATH
+ # Static-only option:
+ if "~shared" in spec:
+ os.environ["ESMF_SHARED_LIB_BUILD"] = "OFF"
+
@run_after("install")
def install_findesmf(self):
install_tree("cmake", self.prefix.cmake)