Skip to content

Commit 0334abd

Browse files
authored
Merge pull request #83307 from mhegazy/build-mimalloc-before-asserts
[build.ps1] Make sure mimalloc is built before we build noasserts toolchain
2 parents 72f56dd + 46b6354 commit 0334abd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/build.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3694,14 +3694,14 @@ if (-not $SkipBuild) {
36943694

36953695
Install-HostToolchain
36963696

3697-
if (-not $SkipBuild -and $IncludeNoAsserts) {
3698-
Build-NoAssertsToolchain
3699-
}
3700-
37013697
if (-not $SkipBuild) {
37023698
Invoke-BuildStep Build-mimalloc $HostPlatform
37033699
}
37043700

3701+
if (-not $SkipBuild -and $IncludeNoAsserts) {
3702+
Build-NoAssertsToolchain
3703+
}
3704+
37053705
if (-not $SkipBuild -and -not $IsCrossCompiling) {
37063706
Invoke-BuildStep Build-DocC $HostPlatform
37073707
}

0 commit comments

Comments
 (0)