plumed: update to use oneapi packages (#49432)

Signed-off-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
This commit is contained in:
Massimiliano Culpo 2025-03-13 08:32:09 +01:00 committed by GitHub
parent 03dbc3035c
commit 774346038e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -292,10 +292,9 @@ def configure_args(self):
if "+mpi" in spec:
configure_opts.extend(["--enable-mpi", "CXX={0}".format(spec["mpi"].mpicxx)])
# If the MPI dependency is provided by the intel-mpi package then
# the following additional argument is required to allow it to
# build.
if "intel-mpi" in spec:
# If the MPI dependency is provided by the intel-oneapi-mpi package then the following
# additional argument is required to allow it to build.
if spec.satisfies("^[virtuals=mpi] intel-oneapi-mpi"):
configure_opts.extend(["STATIC_LIBS=-mt_mpi"])
extra_libs = []