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.
1 parent 5b024e8 commit 1be17b3Copy full SHA for 1be17b3
utils/build.ps1
@@ -1075,6 +1075,13 @@ function Build-CMakeProject {
1075
} else {
1076
TryAdd-KeyValue $Defines CMAKE_Swift_COMPILER (Join-Path -Path (Get-PinnedToolchainTool) -ChildPath "swiftc.exe")
1077
}
1078
+
1079
+ $DebugSwiftC = $Defines["CMAKE_Swift_COMPILER"]
1080
+ Write-Host "DEBUG DEBUG DEBUG CMAKE_Swift_COMPILER: $DebugSwiftC"
1081
+ $DebugSwiftC += " --version"
1082
+ $SwiftVersionOutput = Invoke-Expression $DebugSwiftC
1083
+ Write-Host "DEBUG DEBUG DEBUG SwiftVersionOutput: $SwiftVersionOutput"
1084
1085
if (-not ($Platform -eq "Windows")) {
1086
TryAdd-KeyValue $Defines CMAKE_Swift_COMPILER_WORKS = "YES"
1087
0 commit comments