diff options
author | Tim Haines <thaines.astro@gmail.com> | 2020-03-14 07:45:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 07:45:00 -0500 |
commit | 471f23e456e3b26aff75c17e8e97497087fd7fd3 (patch) | |
tree | 65dbc99ffdf3dd3a2404e956afd21c8ef8d5a41f /var | |
parent | 38d04e29ebe481bcc6d344e669ffca4ebb79bb9f (diff) | |
download | spack-471f23e456e3b26aff75c17e8e97497087fd7fd3.tar.gz spack-471f23e456e3b26aff75c17e8e97497087fd7fd3.tar.bz2 spack-471f23e456e3b26aff75c17e8e97497087fd7fd3.tar.xz spack-471f23e456e3b26aff75c17e8e97497087fd7fd3.zip |
Limit binutils to <= 2.33.1 (#15470)
HPCToolKit <= 2020.03.01 does not build with binutils 2.34.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hpctoolkit/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py index 9a965502de..a8c489f87d 100644 --- a/var/spack/repos/builtin/packages/hpctoolkit/package.py +++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py @@ -60,7 +60,7 @@ class Hpctoolkit(AutotoolsPackage): ' +graph +regex +shared +multithreaded visibility=global' ) - depends_on('binutils+libiberty~nls', type='link') + depends_on('binutils@:2.33.1+libiberty~nls', type='link') depends_on('boost' + boost_libs) depends_on('bzip2+shared', type='link') depends_on('dyninst@9.3.2:') |