We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c126bab + 069302e commit 018ef6eCopy full SHA for 018ef6e
utils/build.ps1
@@ -1421,7 +1421,7 @@ function Build-Compilers() {
1421
# of Clang. If bootstrapping with an older toolchain, we need to relax to relax this requirement with
1422
# ALLOW_COMPILER_AND_STL_VERSION_MISMATCH.
1423
$SwiftFlags = @();
1424
- if ([System.Version](Get-PinnedToolchainVersion) -lt [System.Version]"6.0") {
+ if ([System.Version](Get-PinnedToolchainVersion) -lt [System.Version]"6.0" -and [System.Version](Get-PinnedToolchainVersion) -ne [System.Version]"0.0.0") {
1425
$SwiftFlags += @("-Xcc", "-D_ALLOW_COMPILER_AND_STL_VERSION_MISMATCH");
1426
}
1427
0 commit comments