File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 3
3
load ("@bazel_features_globals//:globals.bzl" , "globals" )
4
4
load ("//private:util.bzl" , "ge" , "ge_same_major" , "lt" )
5
5
6
+ _apple = struct (
7
+ # From Bazel 8.0.0 on, the `xcode_version_flag` is available and the `XcodeVersionConfig`
8
+ # signature changed to migrate Xcode configuration to Starlark.
9
+ # https://github.com/bazelbuild/bazel/commit/26c6add3f9809611ad3795bce1e5c0fb37902902
10
+ xcode_config_migrated = ge ("8.0.0" ),
11
+ )
12
+
6
13
_cc = struct (
7
14
# Whether @bazel_tools//tools/cpp:optional_current_cc_toolchain and the `mandatory` parameter
8
15
# on find_cpp_toolchain are available (#17308).
@@ -125,6 +132,7 @@ _toolchains = struct(
125
132
)
126
133
127
134
bazel_features = struct (
135
+ apple = _apple ,
128
136
cc = _cc ,
129
137
docs = _docs ,
130
138
external_deps = _external_deps ,
You can’t perform that action at this time.
0 commit comments