Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions Utilities/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,8 @@ def get_swiftpm_env_cmd(args):
env_cmd.append("SWIFTPM_LLBUILD_FWK=1")
env_cmd.append("SWIFTCI_USE_LOCAL_DEPS=1")
env_cmd.append("SWIFTPM_MACOS_DEPLOYMENT_TARGET=%s" % g_macos_deployment_target)
# Disable Swift 6 mode in swift-syntax to work around rdar://126952308
env_cmd.append("SWIFTSYNTAX_DISABLE_SWIFT_6_MODE=1")

if not '-macosx' in args.build_target and args.command == 'install':
env_cmd.append("SWIFTCI_INSTALL_RPATH_OS=%s" % args.platform_path.group(2))
Expand Down
2 changes: 2 additions & 0 deletions Utilities/build-using-self
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ echo "Current directory is ${PWD}"

CONFIGURATION=debug
export SWIFTCI_IS_SELF_HOSTED=1
# Disable Swift 6 mode in swift-syntax to work around rdar://126952308
export SWIFTSYNTAX_DISABLE_SWIFT_6_MODE=1

set -x

Expand Down