File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2333,7 +2333,7 @@ function Build-LLVM([Hashtable] $Platform) {
2333
2333
}
2334
2334
2335
2335
function Build-CompilerRuntime ([Hashtable ] $Platform ) {
2336
- $LLVMBinaryCache = $ (Get-ProjectBinaryCache $Platform LLVM )
2336
+ $LLVMBinaryCache = $ (Get-ProjectBinaryCache $HostPlatform Compilers )
2337
2337
2338
2338
$LITVersionStr = $ (Invoke-Program $ (Get-PythonExecutable ) " $LLVMBinaryCache \bin\llvm-lit.py" -- version)
2339
2339
if (-not $ToBatch -and -not ($LITVersionStr -match " lit (\d+)\.\d+\.\d+.*" )) {
@@ -3920,6 +3920,15 @@ if (-not $SkipBuild) {
3920
3920
Invoke-BuildStep Build-XML2 $HostPlatform
3921
3921
Invoke-BuildStep Build-CDispatch $HostPlatform
3922
3922
Invoke-BuildStep Build-Compilers $HostPlatform - Variant " Asserts"
3923
+ $KnownPlatforms.Values | Where-Object {
3924
+ switch ($_.OS ) {
3925
+ Windows { $true }
3926
+ Android { $Android }
3927
+ default { $false }
3928
+ }
3929
+ } | ForEach-Object {
3930
+ Invoke-BuildStep Build-CompilerRuntime $_
3931
+ }
3923
3932
3924
3933
# Build Macros
3925
3934
Build-CMakeProject `
You can’t perform that action at this time.
0 commit comments