@@ -707,15 +707,15 @@ enum Project {
707
707
ClangBuiltins
708
708
ClangRuntime
709
709
SwiftInspect
710
- ExperimentalRuntime
711
- ExperimentalOverlay
712
- ExperimentalStringProcessing
713
- ExperimentalSynchronization
714
- ExperimentalDistributed
715
- ExperimentalObservation
716
- ExperimentalDispatch
717
- ExperimentalDifferentiation
718
- ExperimentalFoundation
710
+ ExperimentalStaticRuntime
711
+ ExperimentalStaticOverlay
712
+ ExperimentalStaticStringProcessing
713
+ ExperimentalStaticSynchronization
714
+ ExperimentalStaticDistributed
715
+ ExperimentalStaticObservation
716
+ ExperimentalStaticDifferentiation
717
+ ExperimentalStaticDispatch
718
+ ExperimentalStaticFoundation
719
719
}
720
720
721
721
function Get-ProjectBinaryCache ([Hashtable ] $Platform , [Project ] $Project ) {
@@ -2470,7 +2470,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2470
2470
2471
2471
Build-CMakeProject `
2472
2472
- Src $SourceCache \swift\Runtimes\Core `
2473
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalRuntime ) `
2473
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) `
2474
2474
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2475
2475
- Platform $Platform `
2476
2476
- UseBuiltCompilers C, CXX, Swift `
@@ -2498,7 +2498,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2498
2498
2499
2499
Build-CMakeProject `
2500
2500
- Src $SourceCache \swift\Runtimes\Overlay `
2501
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalOverlay ) `
2501
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticOverlay ) `
2502
2502
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2503
2503
- Platform $Platform `
2504
2504
- UseBuiltCompilers C, CXX, Swift `
@@ -2511,12 +2511,12 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2511
2511
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2512
2512
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2513
2513
2514
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2514
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2515
2515
}
2516
2516
2517
2517
Build-CMakeProject `
2518
2518
- Src $SourceCache \swift\Runtimes\Supplemental\StringProcessing `
2519
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalStringProcessing ) `
2519
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticStringProcessing ) `
2520
2520
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2521
2521
- Platform $Platform `
2522
2522
- UseBuiltCompilers C, Swift `
@@ -2529,12 +2529,12 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2529
2529
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2530
2530
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2531
2531
2532
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2532
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2533
2533
}
2534
2534
2535
2535
Build-CMakeProject `
2536
2536
- Src $SourceCache \swift\Runtimes\Supplemental\Synchronization `
2537
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalSynchronization ) `
2537
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticSynchronization ) `
2538
2538
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2539
2539
- Platform $Platform `
2540
2540
- UseBuiltCompilers C, Swift `
@@ -2547,53 +2547,53 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2547
2547
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2548
2548
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2549
2549
2550
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2551
- SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalOverlay ) \cmake\SwiftOverlay" ;
2550
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2551
+ SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticOverlay ) \cmake\SwiftOverlay" ;
2552
2552
}
2553
2553
2554
2554
Build-CMakeProject `
2555
2555
- Src $SourceCache \swift\Runtimes\Supplemental\Distributed `
2556
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalDistributed ) `
2556
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticDistributed ) `
2557
2557
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2558
2558
- Platform $Platform `
2559
2559
- UseBuiltCompilers C, CXX, Swift `
2560
2560
- UseGNUDriver `
2561
2561
- Defines @ {
2562
2562
BUILD_SHARED_LIBS = if ($Static ) { " NO" } else { " YES" };
2563
2563
CMAKE_FIND_PACKAGE_PREFER_CONFIG = " YES" ;
2564
- CMAKE_CXX_FLAGS = @ (" -I$ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \include" );
2564
+ CMAKE_CXX_FLAGS = @ (" -I$ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \include" );
2565
2565
CMAKE_Swift_COMPILER_TARGET = (Get-ModuleTriple $Platform );
2566
2566
CMAKE_Swift_COMPILER_WORKS = " YES" ;
2567
2567
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2568
2568
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2569
2569
2570
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2571
- SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalOverlay ) \cmake\SwiftOverlay" ;
2570
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2571
+ SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticOverlay ) \cmake\SwiftOverlay" ;
2572
2572
}
2573
2573
2574
2574
Build-CMakeProject `
2575
2575
- Src $SourceCache \swift\Runtimes\Supplemental\Observation `
2576
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalObservation ) `
2576
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticObservation ) `
2577
2577
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2578
2578
- Platform $Platform `
2579
2579
- UseBuiltCompilers CXX, Swift `
2580
2580
- UseGNUDriver `
2581
2581
- Defines @ {
2582
2582
BUILD_SHARED_LIBS = if ($Static ) { " NO" } else { " YES" };
2583
2583
CMAKE_FIND_PACKAGE_PREFER_CONFIG = " YES" ;
2584
- CMAKE_CXX_FLAGS = @ (" -I$ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \include" );
2584
+ CMAKE_CXX_FLAGS = @ (" -I$ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \include" );
2585
2585
CMAKE_Swift_COMPILER_TARGET = (Get-ModuleTriple $Platform );
2586
2586
CMAKE_Swift_COMPILER_WORKS = " YES" ;
2587
2587
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2588
2588
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2589
2589
2590
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2591
- SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalOverlay ) \cmake\SwiftOverlay" ;
2590
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2591
+ SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticOverlay ) \cmake\SwiftOverlay" ;
2592
2592
}
2593
2593
2594
2594
Build-CMakeProject `
2595
2595
- Src $SourceCache \swift\Runtimes\Supplemental\Differentiation `
2596
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalDifferentiation ) `
2596
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticDifferentiation ) `
2597
2597
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2598
2598
- Platform $Platform `
2599
2599
- UseBuiltCompilers C, CXX, Swift `
@@ -2606,8 +2606,8 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
2606
2606
CMAKE_STATIC_LIBRARY_PREFIX_Swift = " lib" ;
2607
2607
CMAKE_SYSTEM_NAME = $Platform.OS.ToString ();
2608
2608
2609
- SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalRuntime ) \cmake\SwiftCore" ;
2610
- SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalOverlay ) \cmake\SwiftOverlay" ;
2609
+ SwiftCore_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticRuntime ) \cmake\SwiftCore" ;
2610
+ SwiftOverlay_DIR = " $ ( Get-ProjectBinaryCache $Platform ExperimentalStaticOverlay ) \cmake\SwiftOverlay" ;
2611
2611
}
2612
2612
}
2613
2613
}
@@ -2692,7 +2692,7 @@ function Build-Foundation {
2692
2692
)
2693
2693
2694
2694
$FoundationBinaryCache = if ($Static ) {
2695
- Get-ProjectBinaryCache $Platform ExperimentalFoundation
2695
+ Get-ProjectBinaryCache $Platform ExperimentalStaticFoundation
2696
2696
} else {
2697
2697
Get-ProjectBinaryCache $Platform DynamicFoundation
2698
2698
}
@@ -2716,7 +2716,7 @@ function Build-Foundation {
2716
2716
}
2717
2717
2718
2718
$DispatchCMakeModules = if ($Static ) {
2719
- Get-ProjectCMakeModules $Platform ExperimentalDispatch
2719
+ Get-ProjectCMakeModules $Platform ExperimentalStaticDispatch
2720
2720
} else {
2721
2721
Get-ProjectCMakeModules $Platform Dispatch
2722
2722
}
@@ -2937,7 +2937,7 @@ function Build-ExperimentalSDK([Hashtable] $Platform) {
2937
2937
$env: Path = " $ ( Get-CMarkBinaryCache $Platform ) \src;$ ( Get-PinnedToolchainRuntime ) ;${env: Path} "
2938
2938
Build-CMakeProject `
2939
2939
- Src $SourceCache \swift- corelibs- libdispatch `
2940
- - Bin (Get-ProjectBinaryCache $Platform ExperimentalDispatch ) `
2940
+ - Bin (Get-ProjectBinaryCache $Platform ExperimentalStaticDispatch ) `
2941
2941
- InstallTo " $ ( Get-SwiftSDK $Platform.OS - Identifier " $ ( $Platform.OS ) Experimental" ) \usr" `
2942
2942
- Platform $Platform `
2943
2943
- UseBuiltCompilers C, CXX, Swift `
0 commit comments