We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cb651b commit 1dfc10eCopy full SHA for 1dfc10e
utils/swift_build_support/swift_build_support/build_script_invocation.py
@@ -445,6 +445,15 @@ def convert_to_impl_arguments(self):
445
os.path.abspath(args.coverage_db)
446
]
447
448
+ # '--install-swiftsyntax' is a legacy form of 'swift-syntax-lib'
449
+ # install component.
450
+ if (args.install_swiftsyntax and
451
+ '--install-swift' not in args.build_script_impl_args):
452
+ impl_args += [
453
+ "--install-swift",
454
+ "--swift-install-components=swift-syntax-lib"
455
+ ]
456
+
457
if args.llvm_install_components:
458
impl_args += [
459
"--llvm-install-components=%s" % args.llvm_install_components
0 commit comments