@@ -66,9 +66,6 @@ If no such Windows SDK is installed, it will be downloaded from nuget.
66
66
Include the ds2 remote debug server in the SDK.
67
67
This component is currently only supported in Android builds.
68
68
69
- . PARAMETER BuildSanitizers
70
- If set, include ASAN and UBSAN artifacts in the toolchain.
71
-
72
69
. PARAMETER SkipBuild
73
70
If set, does not run the build phase.
74
71
@@ -138,7 +135,6 @@ param(
138
135
[switch ] $SkipRedistInstall = $false ,
139
136
[switch ] $SkipPackaging = $false ,
140
137
[switch ] $IncludeDS2 = $false ,
141
- [switch ] $BuildSanitizers = $false ,
142
138
[string []] $Test = @ (),
143
139
[string ] $Stage = " " ,
144
140
[string ] $BuildTo = " " ,
@@ -2775,14 +2771,13 @@ if (-not $SkipBuild) {
2775
2771
2776
2772
Invoke-BuildStep Build-CMark $HostArch
2777
2773
Invoke-BuildStep Build-Compilers $HostArch
2778
- if ($BuildSanitizers ) {
2779
- $InstallTo = " $ ( $HostArch.ToolchainInstallRoot ) \usr"
2780
- foreach ($Arch in $WindowsSDKArchs ) {
2781
- Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
2782
- }
2783
- foreach ($Arch in $AndroidSDKArchs ) {
2784
- Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
2785
- }
2774
+
2775
+ $InstallTo = " $ ( $HostArch.ToolchainInstallRoot ) \usr"
2776
+ foreach ($Arch in $WindowsSDKArchs ) {
2777
+ Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
2778
+ }
2779
+ foreach ($Arch in $AndroidSDKArchs ) {
2780
+ Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
2786
2781
}
2787
2782
}
2788
2783
0 commit comments