diff options
author | Anton Kozhevnikov <toxa81@gmail.com> | 2022-01-08 03:13:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 18:13:46 -0800 |
commit | 34f0222fdd4d1891f4093b76486c9dcec1a03400 (patch) | |
tree | 6d1c02fc2598f379ddbf6e3fdfb0bf185f115479 /var | |
parent | d125bdfaa0ec9b40bbbcae4c43c7c216f34fe38a (diff) | |
download | spack-34f0222fdd4d1891f4093b76486c9dcec1a03400.tar.gz spack-34f0222fdd4d1891f4093b76486c9dcec1a03400.tar.bz2 spack-34f0222fdd4d1891f4093b76486c9dcec1a03400.tar.xz spack-34f0222fdd4d1891f4093b76486c9dcec1a03400.zip |
ELPA package: don't check threading support during build (#28227)
./configure tries to execute an MPI test, which is not possible on
most HPC platforms (if you don't build on a compute node), so this
check is disabled to allow the build to proceed. Ideally we could
check this by placing constraints on the MPI that Spack builds (e.g.
require building a version that is guaranteed to have threading
support).
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/elpa/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/elpa/package.py b/var/spack/repos/builtin/packages/elpa/package.py index 55a4d6e02c..b6f44589df 100644 --- a/var/spack/repos/builtin/packages/elpa/package.py +++ b/var/spack/repos/builtin/packages/elpa/package.py @@ -177,5 +177,6 @@ class Elpa(AutotoolsPackage, CudaPackage, ROCmPackage): options.append('--enable-autotune-redistribute-matrix') options.append('--disable-silent-rules') + options.append('--without-threading-support-check-during-build') return options |