File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed
utils/swift_build_support/swift_build_support Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -463,16 +463,7 @@ def convert_to_impl_arguments(self):
463
463
"--llvm-install-components=%s" % args .llvm_install_components
464
464
]
465
465
466
- # On non-Darwin platforms, build lld so we can always have a
467
- # linker that is compatible with the swift we are using to
468
- # compile the stdlib.
469
- #
470
- # This makes it easier to build target stdlibs on systems that
471
- # have old toolchains without more modern linker features.
472
- #
473
- # On Darwin, only build lld if explicitly requested using --build-lld.
474
- should_build_lld = (platform .system () != 'Darwin' or args .build_lld )
475
- if not should_build_lld :
466
+ if not args .build_lld :
476
467
impl_args += [
477
468
"--skip-build-lld"
478
469
]
You can’t perform that action at this time.
0 commit comments