summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoralbestro <9337627+albestro@users.noreply.github.com>2020-06-30 18:03:26 +0200
committerGitHub <noreply@github.com>2020-06-30 11:03:26 -0500
commit55796203c4b7fed2206f19938ad7f6478cee4064 (patch)
treeefe6a79272789076cdab5ee6630ea02cca10d34a /var
parent0fd71d24ba8e402ac2ac6cf97e6f52b47e77a73d (diff)
downloadspack-55796203c4b7fed2206f19938ad7f6478cee4064.tar.gz
spack-55796203c4b7fed2206f19938ad7f6478cee4064.tar.bz2
spack-55796203c4b7fed2206f19938ad7f6478cee4064.tar.xz
spack-55796203c4b7fed2206f19938ad7f6478cee4064.zip
add constrain for hpx 1.4.* and boost 1.73.0 (#17307)
https://github.com/STEllAR-GROUP/hpx/issues/4728#issuecomment-640685308
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/hpx/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hpx/package.py b/var/spack/repos/builtin/packages/hpx/package.py
index a8f028b27b..028019864c 100644
--- a/var/spack/repos/builtin/packages/hpx/package.py
+++ b/var/spack/repos/builtin/packages/hpx/package.py
@@ -65,6 +65,10 @@ class Hpx(CMakePackage, CudaPackage):
depends_on('boost@1.55.0:', when='@:1.1.0')
depends_on('hwloc@1.6:', when='@:1.1.0')
+ # boost 1.73.0 build problem with HPX 1.4.0 and 1.4.1
+ # https://github.com/STEllAR-GROUP/hpx/issues/4728#issuecomment-640685308
+ depends_on('boost@:1.72.0', when='@:1.4')
+
# CXX Standard
depends_on('boost cxxstd=11', when='cxxstd=11')
depends_on('boost cxxstd=14', when='cxxstd=14')