visit: set minimum silo version to 4.11 (#42072)

This commit is contained in:
Ben Wibking 2024-01-31 16:05:17 -05:00 committed by GitHub
parent 8fc76ab325
commit e3d5ca2997
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")