diff options
author | Ben Wibking <wibkingb@msu.edu> | 2024-01-31 16:05:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 22:05:17 +0100 |
commit | e3d5ca299774a110645ecf89c4088240de5b270f (patch) | |
tree | 5255eb8269e10c968045f83ca8c2344c68cbf202 | |
parent | 8fc76ab3258244b6e880d3c0403cf167bfe7184c (diff) | |
download | spack-e3d5ca299774a110645ecf89c4088240de5b270f.tar.gz spack-e3d5ca299774a110645ecf89c4088240de5b270f.tar.bz2 spack-e3d5ca299774a110645ecf89c4088240de5b270f.tar.xz spack-e3d5ca299774a110645ecf89c4088240de5b270f.zip |
visit: set minimum silo version to 4.11 (#42072)
-rw-r--r-- | var/spack/repos/builtin/packages/visit/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/visit/package.py b/var/spack/repos/builtin/packages/visit/package.py index 4270c5f3f7..ca78eff6bf 100644 --- a/var/spack/repos/builtin/packages/visit/package.py +++ b/var/spack/repos/builtin/packages/visit/package.py @@ -153,7 +153,8 @@ class Visit(CMakePackage): # VisIt uses Silo's 'ghost zone' data structures, which are only available # in v4.10+ releases: https://wci.llnl.gov/simulation/computer-codes/silo/releases/release-notes-4.10 - depends_on("silo@4.10: +shared", when="+silo") + # Silo versions < 4.11 do not build successfully with Spack + depends_on("silo@4.11: +shared", when="+silo") depends_on("silo+hdf5", when="+silo+hdf5") depends_on("silo~hdf5", when="+silo~hdf5") depends_on("silo+mpi", when="+silo+mpi") |