summaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-10 21:49:49 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commit5b531fa495e711904e3f8f9470b68ca17168f1cc (patch)
tree1282fe6c807f19536e9c20e9bc3da4a16595a2d1 /BUILD.bazel
parentaf164f9af26d0c64d2e8210039b99e4f191acdaa (diff)
Upgrade Bazel to 8.0.0
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel5
1 files changed, 4 insertions, 1 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 467c364..d861b66 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -10,6 +10,9 @@ platform(
constraint_values = [
"@platforms//cpu:x86_64",
"@platforms//os:windows",
- "@bazel_tools//tools/cpp:clang-cl",
+ # @Todo(bazel) Bit weird to use a private thing.
+ # We used to use @bazel_tools//tools/cpp:clang-cl but it's deprecated
+ # in favor of... this?...
+ "@rules_cc//cc/private/toolchain:clang-cl",
],
)