From fa8df377f4c0eea7c94605654210cc442a41a326 Mon Sep 17 00:00:00 2001 From: John Bute Date: Thu, 13 Nov 2025 11:04:18 -0500 Subject: [PATCH 1/3] bumped minor version number swift argument parser --- utils/update_checkout/update-checkout-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/update_checkout/update-checkout-config.json b/utils/update_checkout/update-checkout-config.json index fb33ced5695ad..02b96daf62827 100644 --- a/utils/update_checkout/update-checkout-config.json +++ b/utils/update_checkout/update-checkout-config.json @@ -148,7 +148,7 @@ "swift-tools-protocols": "0.0.9", "swift-tools-support-core": "main", "swiftpm": "main", - "swift-argument-parser": "1.5.1", + "swift-argument-parser": "1.6.1", "swift-atomics": "1.2.0", "swift-collections": "1.1.6", "swift-crypto": "3.12.5", From 0ea5bdc5a8fdbace34a864a2deb1826c95c5b15d Mon Sep 17 00:00:00 2001 From: John Bute Date: Fri, 14 Nov 2025 13:51:13 -0500 Subject: [PATCH 2/3] add c to usebuiltcompilers for swiftargumentparser build --- utils/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build.ps1 b/utils/build.ps1 index 1f9e5eb7687c4..bb21a4fff07d8 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -3638,7 +3638,7 @@ function Build-ArgumentParser([Hashtable] $Platform) { -Bin (Get-ProjectBinaryCache $Platform ArgumentParser) ` -InstallTo "$($Platform.ToolchainInstallRoot)\usr" ` -Platform $Platform ` - -UseBuiltCompilers Swift ` + -UseBuiltCompilers Swift C` -SwiftSDK (Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK) ` -Defines @{ BUILD_SHARED_LIBS = "YES"; From 0209635a8541f1e063f1f90be27f7d3d85abf546 Mon Sep 17 00:00:00 2001 From: johnbute Date: Fri, 14 Nov 2025 14:19:12 -0500 Subject: [PATCH 3/3] Update utils/build.ps1 Co-authored-by: Saleem Abdulrasool --- utils/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build.ps1 b/utils/build.ps1 index bb21a4fff07d8..39320bd1000d6 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -3638,7 +3638,7 @@ function Build-ArgumentParser([Hashtable] $Platform) { -Bin (Get-ProjectBinaryCache $Platform ArgumentParser) ` -InstallTo "$($Platform.ToolchainInstallRoot)\usr" ` -Platform $Platform ` - -UseBuiltCompilers Swift C` + -UseBuiltCompilers Swift,C ` -SwiftSDK (Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK) ` -Defines @{ BUILD_SHARED_LIBS = "YES";