diff options
author | wspear <wjspear@gmail.com> | 2023-12-19 03:20:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 12:20:47 +0100 |
commit | 812a43621b85d694e0fa269f23c7e8deebdef386 (patch) | |
tree | 646c7348007b145d74a349f794276ea12ac49473 /var | |
parent | 0fe338b5262cb90445d0c6a6f7169489879e0fff (diff) | |
download | spack-812a43621b85d694e0fa269f23c7e8deebdef386.tar.gz spack-812a43621b85d694e0fa269f23c7e8deebdef386.tar.bz2 spack-812a43621b85d694e0fa269f23c7e8deebdef386.tar.xz spack-812a43621b85d694e0fa269f23c7e8deebdef386.zip |
tau : v2.33.1 and later requires otf2 v3 (#41691)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/tau/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tau/package.py b/var/spack/repos/builtin/packages/tau/package.py index 56cf5f1d72..b030a65b89 100644 --- a/var/spack/repos/builtin/packages/tau/package.py +++ b/var/spack/repos/builtin/packages/tau/package.py @@ -107,7 +107,8 @@ class Tau(Package): depends_on("zlib-api", type="link") depends_on("pdt", when="+pdt") # Required for TAU instrumentation depends_on("scorep", when="+scorep") - depends_on("otf2@2.1:2.3", when="+otf2") + depends_on("otf2@2.1:2.3", when="@:2.33.0 +otf2") + depends_on("otf2@3:", when="@2.33.1: +otf2") depends_on("likwid", when="+likwid") depends_on("papi", when="+papi") depends_on("libdwarf", when="+libdwarf") |