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 109244c commit 78eb881Copy full SHA for 78eb881
utils/swift_build_support/swift_build_support/build_script_invocation.py
@@ -251,6 +251,13 @@ def convert_to_impl_arguments(self):
251
args.extra_cmake_options.append(
252
'-DSWIFT_PATH_TO_SWIFT_SYNTAX_SOURCE:PATH={}'.format(swift_syntax_src))
253
254
+ if args.build_early_swiftsyntax:
255
+ early_swiftsyntax_build_dir = os.path.join(
256
+ self.workspace.build_root, '%s-%s' % ('earlyswiftsyntax',
257
+ self.args.host_target))
258
+ args.extra_cmake_options.append(
259
+ '-DSWIFT_PATH_TO_EARLYSWIFTSYNTAX_BUILD_DIR:PATH={}'.format(early_swiftsyntax_build_dir))
260
+
261
# Then add subproject install flags that either skip building them /or/
262
# if we are going to build them and install_all is set, we also install
263
# them.
0 commit comments