petsc: use --with-exodusii-dir [as exodus does not have 'libs()' to provide value for --with-exodusii-lib] (#47506)

This commit is contained in:
Satish Balay 2024-11-11 08:52:20 -06:00 committed by GitHub
parent 8c962a94b0
commit f458392c1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -514,6 +514,9 @@ def configure_options(self):
else:
hdf5libs = ":hl"
if "+exodusii+fortran" in spec and "+fortran" in spec:
options.append("--with-exodusii-fortran-bindings")
# tuple format (spacklibname, petsclibname, useinc, uselib)
# default: 'gmp', => ('gmp', 'gmp', True, True)
# any other combination needs a full tuple
@ -553,7 +556,7 @@ def configure_options(self):
("parallel-netcdf", "pnetcdf", True, True),
("moab", "moab", False, False),
("random123", "random123", False, False),
"exodusii",
("exodusii", "exodusii", False, False),
"cgns",
"memkind",
"p4est",