File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -262,11 +262,7 @@ def compile_action_configs(
262
262
configurators = [
263
263
swift_toolchain_config .add_arg ("-emit-bc" ),
264
264
],
265
- features = [
266
- [SWIFT_FEATURE_EMIT_BC ],
267
- [SWIFT_FEATURE_FULL_LTO ],
268
- [SWIFT_FEATURE_THIN_LTO ],
269
- ],
265
+ features = [SWIFT_FEATURE_EMIT_BC ],
270
266
),
271
267
272
268
# Add the single object file or object file map, whichever is needed.
@@ -414,15 +410,13 @@ def compile_action_configs(
414
410
swift_toolchain_config .add_arg ("-lto=llvm-thin" ),
415
411
],
416
412
features = [SWIFT_FEATURE_THIN_LTO ],
417
- not_features = [SWIFT_FEATURE_FULL_LTO ],
418
413
),
419
414
swift_toolchain_config .action_config (
420
415
actions = [swift_action_names .COMPILE ],
421
416
configurators = [
422
417
swift_toolchain_config .add_arg ("-lto=llvm-full" ),
423
418
],
424
419
features = [SWIFT_FEATURE_FULL_LTO ],
425
- not_features = [SWIFT_FEATURE_THIN_LTO ],
426
420
),
427
421
]
428
422
You can’t perform that action at this time.
0 commit comments