Skip to content

Commit 4a93d76

Browse files
Rename option: IncludeSanitizers -> BuildSanitizers
1 parent 76be949 commit 4a93d76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ If no such Windows SDK is installed, it will be downloaded from nuget.
6666
Include the ds2 remote debug server in the SDK.
6767
This component is currently only supported in Android builds.
6868
69-
.PARAMETER IncludeSanitizers
69+
.PARAMETER BuildSanitizers
7070
If set, include ASAN and UBSAN artifacts in the toolchain.
7171
7272
.PARAMETER SkipBuild
@@ -138,7 +138,7 @@ param(
138138
[switch] $SkipRedistInstall = $false,
139139
[switch] $SkipPackaging = $false,
140140
[switch] $IncludeDS2 = $false,
141-
[switch] $IncludeSanitizers = $false,
141+
[switch] $BuildSanitizers = $false,
142142
[string[]] $Test = @(),
143143
[string] $Stage = "",
144144
[string] $BuildTo = "",
@@ -2775,7 +2775,7 @@ if (-not $SkipBuild) {
27752775

27762776
Invoke-BuildStep Build-CMark $HostArch
27772777
Invoke-BuildStep Build-Compilers $HostArch
2778-
if ($IncludeSanitizers) {
2778+
if ($BuildSanitizers) {
27792779
$InstallTo = "$($HostArch.ToolchainInstallRoot)\usr"
27802780
foreach ($Arch in $WindowsSDKArchs) {
27812781
Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo

0 commit comments

Comments
 (0)