Skip to content

Commit f38541f

Browse files
committed
utils: rename Foundation to DynamicFoundation
The smoke test for the new runtime builds also serves as a static runtime build test. Rename the `Foundation` product to `DynamicFoundation` to permit the introduction of a `StaticFoundation` to fit into the static SDK build.
1 parent 0721124 commit f38541f

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
@@ -426,7 +426,7 @@ enum TargetComponent {
426426
LLVM
427427
Runtime
428428
Dispatch
429-
Foundation
429+
DynamicFoundation
430430
XCTest
431431
Testing
432432
ClangBuiltins
@@ -2122,7 +2122,7 @@ function Build-Foundation([Platform]$Platform, $Arch, [switch]$Test = $false) {
21222122
}
21232123
} else {
21242124
$DispatchBinaryCache = Get-TargetProjectBinaryCache $Arch Dispatch
2125-
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch Foundation
2125+
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch DynamicFoundation
21262126
$ShortArch = $Arch.LLVMName
21272127

21282128
Isolate-EnvVars {
@@ -2215,7 +2215,7 @@ function Build-FoundationMacros() {
22152215

22162216
function Build-XCTest([Platform]$Platform, $Arch, [switch]$Test = $false) {
22172217
$DispatchBinaryCache = Get-TargetProjectBinaryCache $Arch Dispatch
2218-
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch Foundation
2218+
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch DynamicFoundation
22192219
$XCTestBinaryCache = Get-TargetProjectBinaryCache $Arch XCTest
22202220

22212221
Isolate-EnvVars {
@@ -2254,7 +2254,7 @@ function Build-XCTest([Platform]$Platform, $Arch, [switch]$Test = $false) {
22542254

22552255
function Build-Testing([Platform]$Platform, $Arch, [switch]$Test = $false) {
22562256
$DispatchBinaryCache = Get-TargetProjectBinaryCache $Arch Dispatch
2257-
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch Foundation
2257+
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch DynamicFoundation
22582258
$SwiftTestingBinaryCache = Get-TargetProjectBinaryCache $Arch Testing
22592259

22602260
Isolate-EnvVars {

0 commit comments

Comments
 (0)