File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -184,63 +184,55 @@ uv.platform(
184
184
"@platforms//os:macos" ,
185
185
"@platforms//cpu:aarch64" ,
186
186
],
187
- flag_values = {},
188
187
)
189
188
uv .platform (
190
189
name = "aarch64-unknown-linux-gnu" ,
191
190
compatible_with = [
192
191
"@platforms//os:linux" ,
193
192
"@platforms//cpu:aarch64" ,
194
193
],
195
- flag_values = {},
196
194
)
197
195
uv .platform (
198
196
name = "powerpc64-unknown-linux-gnu" ,
199
197
compatible_with = [
200
198
"@platforms//os:linux" ,
201
199
"@platforms//cpu:ppc" ,
202
200
],
203
- flag_values = {},
204
201
)
205
202
uv .platform (
206
203
name = "powerpc64le-unknown-linux-gnu" ,
207
204
compatible_with = [
208
205
"@platforms//os:linux" ,
209
206
"@platforms//cpu:ppc64le" ,
210
207
],
211
- flag_values = {},
212
208
)
213
209
uv .platform (
214
210
name = "s390x-unknown-linux-gnu" ,
215
211
compatible_with = [
216
212
"@platforms//os:linux" ,
217
213
"@platforms//cpu:s390x" ,
218
214
],
219
- flag_values = {},
220
215
)
221
216
uv .platform (
222
217
name = "x86_64-apple-darwin" ,
223
218
compatible_with = [
224
219
"@platforms//os:macos" ,
225
220
"@platforms//cpu:x86_64" ,
226
221
],
227
- flag_values = {},
228
222
)
229
223
uv .platform (
230
224
name = "x86_64-pc-windows-msvc" ,
231
225
compatible_with = [
232
226
"@platforms//os:windows" ,
233
227
"@platforms//cpu:x86_64" ,
234
228
],
235
- flag_values = {},
236
229
)
237
230
uv .platform (
238
231
name = "x86_64-unknown-linux-gnu" ,
239
232
compatible_with = [
240
233
"@platforms//os:linux" ,
241
234
"@platforms//cpu:x86_64" ,
242
235
],
243
- flag_values = {},
244
236
)
245
237
246
238
uv_dev = use_extension (
Original file line number Diff line number Diff line change @@ -65,9 +65,6 @@ platform = tag_class(
65
65
"compatible_with" : attr .label_list (
66
66
doc = "The compatible with constraint values for toolchain resolution" ,
67
67
),
68
- "flag_values" : attr .label_keyed_string_dict (
69
- doc = "The flag values for toolchain resolution" ,
70
- ),
71
68
"name" : attr .string (
72
69
doc = "The platform string used in the UV repository to denote the platform triple." ,
73
70
mandatory = True ,
@@ -113,7 +110,6 @@ def _uv_toolchain_extension(module_ctx):
113
110
config ["platforms" ].setdefault (platform_attr .name , struct (
114
111
name = platform_attr .name .replace ("-" , "_" ).lower (),
115
112
compatible_with = platform_attr .compatible_with ,
116
- flag_values = platform_attr .flag_values ,
117
113
))
118
114
119
115
for config_attr in mod .tags .config :
You can’t perform that action at this time.
0 commit comments