From 4f25204c79508c3f5b4b653355c27f8758249045 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Fri, 27 Feb 2026 03:19:53 -0500 Subject: [PATCH 1/2] [release/9.0.1xx] Bump to Xcode 26.3. --- Make.config | 6 +++--- tools/common/SdkVersions.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Make.config b/Make.config index 7dbb7adf0575..bfb0793b87d6 100644 --- a/Make.config +++ b/Make.config @@ -201,9 +201,9 @@ MACCATALYST_NUGET_VERSION_NO_METADATA=$(MACCATALYST_NUGET_VERSION)$(NUGET_PREREL MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)$(NUGET_BUILD_METADATA) # Xcode version should have both a major and a minor version (even if the minor version is 0) -XCODE_VERSION=26.2 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_26.2.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_26.2.0.app/Contents/Developer +XCODE_VERSION=26.3 +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_26.3.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_26.3.0.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/tools/common/SdkVersions.cs b/tools/common/SdkVersions.cs index 0101fdede32a..9723dc0ed210 100644 --- a/tools/common/SdkVersions.cs +++ b/tools/common/SdkVersions.cs @@ -14,7 +14,7 @@ namespace Xamarin { static class SdkVersions { - public const string Xcode = "26.2"; + public const string Xcode = "26.3"; public const string OSX = "26.2"; public const string iOS = "26.2"; public const string TVOS = "26.2"; From e57453b84ecf85219ad8400e17d6e88d50f97fea Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 2 Mar 2026 16:12:42 +0100 Subject: [PATCH 2/2] [system-dependencies] Don't exit too early. --- system-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-dependencies.sh b/system-dependencies.sh index 64201a9b7cbc..53bd35fb868f 100755 --- a/system-dependencies.sh +++ b/system-dependencies.sh @@ -412,7 +412,7 @@ function xcodebuild_download_selected_platforms () log "Executing '$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -downloadPlatform tvOS$TVOS_BUILD_VERSION' $1" "$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild" -downloadPlatform tvOS $TVOS_BUILD_VERSION 2>&1 | sed 's/^/ /' - exit 0 + return 0 } function download_xcode_platforms ()