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):
463463 "--llvm-install-components=%s" % args .llvm_install_components
464464 ]
465465
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 :
476467 impl_args += [
477468 "--skip-build-lld"
478469 ]
You can’t perform that action at this time.
0 commit comments