Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,14 @@ def convert_to_impl_arguments(self):
args.extra_cmake_options.append(
'-DSWIFT_PATH_TO_SWIFT_SYNTAX_SOURCE:PATH={}'.format(swift_syntax_src))

if args.build_early_swiftsyntax:
early_swiftsyntax_build_dir = os.path.join(
self.workspace.build_root,
'%s-%s' % ('earlyswiftsyntax', self.args.host_target))
args.extra_cmake_options.append(
'-DSWIFT_PATH_TO_EARLYSWIFTSYNTAX_BUILD_DIR:PATH={}'
.format(early_swiftsyntax_build_dir))

# Then add subproject install flags that either skip building them /or/
# if we are going to build them and install_all is set, we also install
# them.
Expand Down