summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hpctoolkit
diff options
context:
space:
mode:
authorMark W. Krentel <krentel@rice.edu>2020-09-08 01:27:39 -0500
committerGitHub <noreply@github.com>2020-09-08 08:27:39 +0200
commit850924e423c05d38e6a70a081418332624ce8376 (patch)
tree73ad0fc9436a94a888fbc0c566efe798aedfc90e /var/spack/repos/builtin/packages/hpctoolkit
parent64273da2ccd3ea12683951c6e9f0693a3343d64e (diff)
downloadspack-850924e423c05d38e6a70a081418332624ce8376.tar.gz
spack-850924e423c05d38e6a70a081418332624ce8376.tar.bz2
spack-850924e423c05d38e6a70a081418332624ce8376.tar.xz
spack-850924e423c05d38e6a70a081418332624ce8376.zip
hpctoolkit: adjust some dependencies (#18558)
Hpctoolkit master and upcoming releases now want the +pic variant for two dependencies, libunwind and xz.
Diffstat (limited to 'var/spack/repos/builtin/packages/hpctoolkit')
-rw-r--r--var/spack/repos/builtin/packages/hpctoolkit/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py
index 89a7a4b641..44b85d4e11 100644
--- a/var/spack/repos/builtin/packages/hpctoolkit/package.py
+++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py
@@ -70,10 +70,12 @@ class Hpctoolkit(AutotoolsPackage):
depends_on('intel-tbb+shared')
depends_on('libdwarf')
depends_on('libmonitor+hpctoolkit')
- depends_on('libunwind@1.4: +xz')
+ depends_on('libunwind@1.4: +xz+pic', when='@2020.09.00:')
+ depends_on('libunwind@1.4: +xz', when='@:2020.08.99')
depends_on('mbedtls+pic')
depends_on('xerces-c transcoder=iconv')
- depends_on('xz', type='link')
+ depends_on('xz+pic', type='link', when='@2020.09.00:')
+ depends_on('xz', type='link', when='@:2020.08.99')
depends_on('zlib+shared')
depends_on('cuda', when='+cuda')