From 388f78c40752ec1dea4c67ddd634426b5a30d0cf Mon Sep 17 00:00:00 2001 From: Marc Prud'hommeaux Date: Fri, 20 Jun 2025 09:40:50 -0400 Subject: [PATCH] Update sdkRootPath to be optional in swift-sdk.json In https://github.com/swiftlang/swift-package-manager/pull/8687 make sdkRootPath an optional field. --- proposals/0387-cross-compilation-destinations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposals/0387-cross-compilation-destinations.md b/proposals/0387-cross-compilation-destinations.md index 40367a6464..0346b10bb1 100644 --- a/proposals/0387-cross-compilation-destinations.md +++ b/proposals/0387-cross-compilation-destinations.md @@ -325,7 +325,7 @@ and `"version": "3.0"` for backward compatibility, but for consistency with `inf "schemaVersion": "4.0", "targetTriples": { "": { - "sdkRootPath": "", + "sdkRootPath": "", // all of the properties listed below are optional: "swiftResourcesPath": "", "swiftStaticResourcesPath": "", @@ -335,7 +335,7 @@ and `"version": "3.0"` for backward compatibility, but for consistency with `inf }, // a Swift SDK can support more than one target triple: "": { - "sdkRootPath": "", + "sdkRootPath": "", // all of the properties listed below are optional: "swiftResourcesPath": "", "swiftStaticResourcesPath": "",