openmpi: add with-lsf-libdir config option (#44563)

This commit is contained in:
Robert Manson-Sawko 2024-06-20 15:25:25 +01:00 committed by GitHub
parent 35557ac21c
commit 00f0ca2060
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1038,6 +1038,9 @@ def configure_args(self):
if "schedulers=auto" not in spec:
config_args.extend(self.with_or_without("schedulers"))
if spec.satisfies("schedulers=lsf"):
config_args.append("--with-lsf-libdir={0}".format(spec["lsf"].libs.directories[0]))
config_args.extend(self.enable_or_disable("memchecker"))
if spec.satisfies("+memchecker"):
config_args.extend(["--enable-debug"])