From 43b80d8b47a87ccfdb2bc74e3e060a0d727837a1 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 18 Feb 2025 11:55:40 -0800 Subject: [PATCH] utils: add a toggle for the toolchain variant Prepare to package multiple variants of the toolchain. This wires up the variant information to the packaging rules. --- utils/build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/build.ps1 b/utils/build.ps1 index ef0866713e234..fbabcf3921a19 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -3067,6 +3067,7 @@ function Build-Installer($Arch) { # When cross-compiling, bundle the second mimalloc redirect dll as a workaround for # https://github.com/microsoft/mimalloc/issues/997 WORKAROUND_MIMALLOC_ISSUE_997 = if ($IsCrossCompiling) { "true" } else { "false" }; + INCLUDE_ASSERTS_TOOLCHAIN = "true"; INCLUDE_SWIFT_DOCC = $INCLUDE_SWIFT_DOCC; SWIFT_DOCC_BUILD = "$($Arch.BinaryCache)\swift-docc\release"; SWIFT_DOCC_RENDER_ARTIFACT_ROOT = "${SourceCache}\swift-docc-render-artifact";