diff options
author | Stephen Sachs <stephenmsachs@gmail.com> | 2022-12-07 13:52:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 11:52:12 -0800 |
commit | 8806e74419c408924f62ec2a49d0e061a1286f0a (patch) | |
tree | 9bd238e43d6dd837cb827068e9be1e02ee6333eb | |
parent | 381f8161b11e9087b72d76c48b56c6264ea932d3 (diff) | |
download | spack-8806e74419c408924f62ec2a49d0e061a1286f0a.tar.gz spack-8806e74419c408924f62ec2a49d0e061a1286f0a.tar.bz2 spack-8806e74419c408924f62ec2a49d0e061a1286f0a.tar.xz spack-8806e74419c408924f62ec2a49d0e061a1286f0a.zip |
[quantum-espresso] Parallel make fails for 6.{6,7} (#34238)
* [quantum-espresso] Parallel make fails for 6.{6,7}
I run into a race condition in `make` with Intel compiler on icelake when building QE 6.6 and 6.7.
* Fix comment
Co-authored-by: Stephen Sachs <stesachs@amazon.com>
-rw-r--r-- | var/spack/repos/builtin/packages/quantum-espresso/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/quantum-espresso/package.py b/var/spack/repos/builtin/packages/quantum-espresso/package.py index d445408211..c6b930dec8 100644 --- a/var/spack/repos/builtin/packages/quantum-espresso/package.py +++ b/var/spack/repos/builtin/packages/quantum-espresso/package.py @@ -581,8 +581,8 @@ class GenericBuilder(spack.build_systems.generic.GenericBuilder): zlib_libs = spec["zlib"].prefix.lib + " -lz" filter_file(zlib_libs, format(spec["zlib"].libs.ld_flags), make_inc) - # QE 6.6 and later has parallel builds fixed - if spec.satisfies("@:6.5"): + # QE 6.8 and later has parallel builds fixed + if spec.satisfies("@:6.7"): parallel_build_on = False else: parallel_build_on = True |