diff options
author | Mikael Simberg <mikael.simberg@iki.fi> | 2022-04-12 12:36:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 12:36:14 +0200 |
commit | 17e2fb0ef65581f338a4f5aeef9417743d00eb50 (patch) | |
tree | feb5bcbba353bc8f2bf09a034fffaf5911035333 /var | |
parent | ce09b42cdd018d6154655d89548402a11ff471e6 (diff) | |
download | spack-17e2fb0ef65581f338a4f5aeef9417743d00eb50.tar.gz spack-17e2fb0ef65581f338a4f5aeef9417743d00eb50.tar.bz2 spack-17e2fb0ef65581f338a4f5aeef9417743d00eb50.tar.xz spack-17e2fb0ef65581f338a4f5aeef9417743d00eb50.zip |
Add missing Boost dependencies to pika+generic_coroutines variant (#30026)
Co-authored-by: Mikael Simberg <mikael.simberg@iki.if>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/pika/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pika/package.py b/var/spack/repos/builtin/packages/pika/package.py index 4472773b75..0384f4167a 100644 --- a/var/spack/repos/builtin/packages/pika/package.py +++ b/var/spack/repos/builtin/packages/pika/package.py @@ -84,6 +84,7 @@ class Pika(CMakePackage, CudaPackage, ROCmPackage): # https://github.com/spack/spack/pull/17654 # https://github.com/STEllAR-GROUP/hpx/issues/4829 depends_on('boost+context', when='+generic_coroutines') + depends_on('boost+atomic+chrono+thread', when='@:0.3.0+generic_coroutines') _msg_generic_coroutines = 'This platform requires +generic_coroutines' conflicts('~generic_coroutines', when='platform=darwin', msg=_msg_generic_coroutines) |