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.
2 parents 30221a4 + 1d3b70d commit 60952b8Copy full SHA for 60952b8
utils/build_swift/build_swift/driver_arguments.py
@@ -126,6 +126,7 @@ def _apply_default_arguments(args):
126
# Building with Xcode is deprecated.
127
args.skip_build = True
128
args.build_early_swift_driver = False
129
+ args.build_early_swiftsyntax = False
130
131
# --ios-all etc are not supported by open-source Swift.
132
if args.ios_all:
utils/build_swift/tests/build_swift/test_driver_arguments.py
@@ -646,3 +646,4 @@ def test_implied_defaults_xcode(self):
646
self.assertEqual(namespace.cmake_generator, 'Xcode')
647
self.assertTrue(namespace.skip_build)
648
self.assertFalse(namespace.build_early_swift_driver)
649
+ self.assertFalse(namespace.build_early_swiftsyntax)
0 commit comments