diff options
author | Tim Haines <thaines.astro@gmail.com> | 2024-05-07 16:03:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 15:03:17 -0600 |
commit | d3c3d23d1e411b61292faba467196ec7c3508f9c (patch) | |
tree | 7b11a802ef08dea41127069b74b5c379472e122b | |
parent | 33752c2b550899bfac18f04f694a46fd8f148ffd (diff) | |
download | spack-d3c3d23d1e411b61292faba467196ec7c3508f9c.tar.gz spack-d3c3d23d1e411b61292faba467196ec7c3508f9c.tar.bz2 spack-d3c3d23d1e411b61292faba467196ec7c3508f9c.tar.xz spack-d3c3d23d1e411b61292faba467196ec7c3508f9c.zip |
Dyninst: update compiler requirements (#44033)
As of 13.0.0, Dyninst can now build with any Linux compiler.
-rw-r--r-- | var/spack/repos/builtin/packages/dyninst/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/dyninst/package.py b/var/spack/repos/builtin/packages/dyninst/package.py index f9a89ad0b5..9593f3262f 100644 --- a/var/spack/repos/builtin/packages/dyninst/package.py +++ b/var/spack/repos/builtin/packages/dyninst/package.py @@ -108,7 +108,7 @@ class Dyninst(CMakePackage): patch("v9.3.2-auto.patch", when="@9.3.2 %gcc@:4.7") patch("tribool.patch", when="@9.3.0:10.0.0 ^boost@1.69:") - requires("%gcc", msg="dyninst builds only with GCC") + requires("%gcc", when="@:13.0.0", msg="dyninst builds only with GCC") # No Mac support (including apple-clang) conflicts("platform=darwin", msg="macOS is not supported") |