diff --git a/utils/build.ps1 b/utils/build.ps1 index 727b293bd7eae..885a91a2584e0 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -764,6 +764,7 @@ enum Project { Subprocess Build PackageManager + PackageManagerRuntime Markdown Format LMDB @@ -3497,6 +3498,14 @@ function Build-PackageManager([Hashtable] $Platform) { SQLite3_INCLUDE_DIR = "$SourceCache\swift-toolchain-sqlite\Sources\CSQLite\include"; SQLite3_LIBRARY = "$(Get-ProjectBinaryCache $Platform SQLite)\SQLite3.lib"; } + + Build-CMakeProject ` + -Src "$SrcDir\Sources\Runtime" ` + -Bin (Get-ProjectBinaryCache $Platform PackageManagerRuntime) ` + -InstallTo "$($Platform.ToolchainInstallRoot)\usr" ` + -Platform $Platform ` + -UseBuiltCompilers C,Swift ` + -SwiftSDK (Get-SwiftSDK -OS $Platform.OS) } function Build-Markdown([Hashtable] $Platform) {