elpa: Add --enable-scalapack-tests to configure when +autotune (#39728)

When building elpa +autotune, we apparently need to add
the configure option --enable-scalapack-tests
This commit is contained in:
Tom Payerle 2023-09-11 12:37:56 -04:00 committed by GitHub
parent 5598de88ff
commit 4182e97761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,6 +185,8 @@ def configure_args(self):
if "+autotune" in self.spec:
options.append("--enable-autotune-redistribute-matrix")
# --enable-autotune-redistribute-matrix requires --enable-scalapack-tests as well
options.append("--enable-scalapack-tests")
options.append("--disable-silent-rules")
options.append("--without-threading-support-check-during-build")