summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <tiziano.mueller@chem.uzh.ch>2021-09-22 01:07:25 +0200
committerGitHub <noreply@github.com>2021-09-21 16:07:25 -0700
commitd34b2638c75763324ff75d9c777527850ba6aed6 (patch)
tree040f800870a75af68b9bd88acb7112a6dc9a4126
parent979c355c99da2f8738892b57e0459cb6a9c9453c (diff)
downloadspack-d34b2638c75763324ff75d9c777527850ba6aed6.tar.gz
spack-d34b2638c75763324ff75d9c777527850ba6aed6.tar.bz2
spack-d34b2638c75763324ff75d9c777527850ba6aed6.tar.xz
spack-d34b2638c75763324ff75d9c777527850ba6aed6.zip
boost: fix for @1.77.0%intel (#25965)
Add patch for build script from boost repo.
-rw-r--r--var/spack/repos/builtin/packages/boost/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py
index bfd24c365e..dba864f4c4 100644
--- a/var/spack/repos/builtin/packages/boost/package.py
+++ b/var/spack/repos/builtin/packages/boost/package.py
@@ -298,6 +298,12 @@ class Boost(Package):
when="@:1.76%cce",
level=2)
+ # Fix building with Intel compilers
+ patch("https://github.com/bfgroup/b2/commit/23212066f0f20358db54568bb16b3fe1d76f88ce.patch",
+ sha256="93f4aad8f88d1437e50d95a2d066390ef3753b99ef5de24f7a46bc083bd6df06",
+ when="@1.77.0",
+ working_dir="tools/build")
+
def patch(self):
# Disable SSSE3 and AVX2 when using the NVIDIA compiler
if self.spec.satisfies('%nvhpc'):