diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-04-05 14:24:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-05 14:24:06 +0200 |
commit | 558a28bf526875580e1de091b5f6ae7dc6254759 (patch) | |
tree | fb1dab90ac2b680122c8d59aa79d706dcf4baf66 /var | |
parent | 411576e1fa125b7eb58f816c2d2b6da0bcb95555 (diff) | |
download | spack-558a28bf526875580e1de091b5f6ae7dc6254759.tar.gz spack-558a28bf526875580e1de091b5f6ae7dc6254759.tar.bz2 spack-558a28bf526875580e1de091b5f6ae7dc6254759.tar.xz spack-558a28bf526875580e1de091b5f6ae7dc6254759.zip |
bazel: conflict with gcc 13 (#43504)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/bazel/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bazel/package.py b/var/spack/repos/builtin/packages/bazel/package.py index fd8ac98b2a..52ba8f74bf 100644 --- a/var/spack/repos/builtin/packages/bazel/package.py +++ b/var/spack/repos/builtin/packages/bazel/package.py @@ -131,6 +131,8 @@ class Bazel(Package): # Bazel-4.0.0 does not compile with gcc-11 # Newer versions of grpc and abseil dependencies are needed but are not in bazel-4.0.0 conflicts("@4.0.0", when="%gcc@11:") + # https://github.com/bazelbuild/bazel/issues/18642 + conflicts("@:6", when="%gcc@13:") executables = ["^bazel$"] |