From b0bfaa417c848534178923683c66ecf7999c0681 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 18 Nov 2025 22:05:55 -0800 Subject: [PATCH] utils: avoid rebuilding swift-system Ensure that we pass along swift-system to swift-subprocess when building to avoid the re-cloning and re-building of the dependency. This should reduce any potential bloat and build time costs. --- utils/build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/build.ps1 b/utils/build.ps1 index 9cf1b37708ba1..627148a2f8c0b 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -3523,6 +3523,7 @@ function Build-Subprocess([Hashtable] $Platform) { -Defines @{ BUILD_SHARED_LIBS = "NO"; CMAKE_STATIC_LIBRARY_PREFIX_Swift = "lib"; + SwiftSystem_DIR = (Get-ProjectCMakeModules $Platform System); } }