summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorwspear <wjspear@gmail.com>2021-04-27 10:36:17 -0700
committerGitHub <noreply@github.com>2021-04-27 10:36:17 -0700
commit303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc (patch)
treeb4194b07d728d811259ef8057099d3ec04d9fd98 /var
parent4179c8bd724a0a787a0860c4fa986d3ace53965a (diff)
downloadspack-303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc.tar.gz
spack-303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc.tar.bz2
spack-303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc.tar.xz
spack-303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc.zip
Add +plugins to binutils dependency (#23272)
Tau will build but instrumented applications will fail to link with tau if it is built with a binutils that does not include the plugins variant.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/tau/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tau/package.py b/var/spack/repos/builtin/packages/tau/package.py
index f3356c8bb5..75889c9d51 100644
--- a/var/spack/repos/builtin/packages/tau/package.py
+++ b/var/spack/repos/builtin/packages/tau/package.py
@@ -95,7 +95,7 @@ class Tau(Package):
depends_on('libdwarf', when='+libdwarf')
depends_on('libelf', when='+libdwarf')
# TAU requires the ELF header support, libiberty and demangle.
- depends_on('binutils@:2.33.1+libiberty+headers', when='+binutils')
+ depends_on('binutils@:2.33.1+libiberty+headers+plugins', when='+binutils')
depends_on('python@2.7:', when='+python')
depends_on('libunwind', when='+libunwind')
depends_on('mpi', when='+mpi', type=('build', 'run', 'link'))