Why is macOS minimum 11.0? (And beware of Xcode 27!)
-
@dannytaurus said in Why is macOS minimum 11.0? (And beware of Xcode 27!):
Looks like Xcode 27.0 targets a minimum of macOS 12
Where do you see this?
-
@David-Healey said in Why is macOS minimum 11.0? (And beware of Xcode 27!):
I noticed it too and I changed it in my fork a couple of months ago.
And no ill effects so far?
-
@dannytaurus None, but I'm using Ventura as my build system, and whatever version of xcode it supports.
-
@David-Healey said in Why is macOS minimum 11.0? (And beware of Xcode 27!):
Where do you see this?
Xcode 27 Release Notes https://developer.apple.com/documentation/xcode-release-notes/xcode-27-release-notes
The relevant line is under the "Intel Deprecation" section (issue ID 162138432):
"Xcode 27 will only install and run on Apple silicon Macs. The macOS 27 SDK supports back deploying Universal (Intel and Apple Silicon) apps to macOS 12 and later. Intel development is still possible with macOS versions that support Rosetta like macOS 27."
-
@dannytaurus said in Why is macOS minimum 11.0? (And beware of Xcode 27!):
The relevant line is under the "Intel Deprecation" section (issue ID 162138432):
hmm I found this page which mentions the deployment target for Xcode27 as being macOS 12-27
But it also says macOS 11-26 for Xcode 26, so maybe deployment target doesn't mean what we think it means.
Edit: I just noticed a helpful bit of info at the bottom of the page
Deployment Target: The OS range supported by this version of Xcode for uploading apps to App Store Connect.
-
@David-Healey Hope you're right!
-
@David-Healey Claude says:
the libc++ minimum deployment target was raised to 11.0, which is a hard toolchain fact — a C++ codebase like HISE cannot target 10.14 or 10.15 from Xcode 27 regardless of distribution channel
So 10.13 to 10.15 etc are completely out for Xcode 27, but can it build for 11 (even if 12 is the minimum for App Store) is still an open question.
-
@dannytaurus Where are you seeing that info?
-
Deprecations in Xcode 27 Beta
The following items have been deprecated or removed:
The minimum supported deployment target on macOS for the C++ standard library has been increased to 11.0. -
@dannytaurus Interesting, looks like they are also phasing out Intel support when they eventually limit the minimum deployment to 27.0 - probably a few years yet.
I'll just stick with my existing build system for now until it no longer works.