Skip to content

Commit

Permalink
Bump minimum supported macOS version to 10.15 (macOS Catalina) (#79098)
Browse files Browse the repository at this point in the history
* Bump minimum supported macOS version to 10.15 (macOS Catalina)

* docs

* un-remove the actually useful comment
  • Loading branch information
moxian authored Jan 12, 2025
1 parent 0a975c6 commit 33bd0e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ endif
# OSX
ifeq ($(NATIVE), osx)
DEFINES += -DMACOSX
CXXFLAGS += -mmacosx-version-min=10.13
LDFLAGS += -mmacosx-version-min=10.13 -framework CoreFoundation -Wl,-headerpad_max_install_names
CXXFLAGS += -mmacosx-version-min=10.15
LDFLAGS += -mmacosx-version-min=10.15 -framework CoreFoundation -Wl,-headerpad_max_install_names
ifeq ($(UNIVERSAL_BINARY), 1)
CXXFLAGS += -arch x86_64 -arch arm64
LDFLAGS += -arch x86_64 -arch arm64
Expand Down
8 changes: 4 additions & 4 deletions doc/COMPILING/COMPILER_SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| [clang](https://clang.llvm.org) | [10.0](https://releases.llvm.org/10.0.0/docs/index.html) |
| [MinGW-w64](https://www.mingw-w64.org) | [UCRT 14.2.0](https://www.mingw-w64.org/downloads/) |
| [Visual Studio](https://visualstudio.microsoft.com/) | [2019](COMPILING-VS-VCPKG.md) |
| [XCode](https://developer.apple.com/xcode) | [10.1](https://developer.apple.com/documentation/xcode-release-notes/xcode-10_1-release-notes) <br/> [macOS 10.13](https://en.wikipedia.org/wiki/MacOS_High_Sierra) |
| [XCode](https://developer.apple.com/xcode) | [11.4](https://developer.apple.com/documentation/xcode-release-notes/xcode-11_4-release-notes) <br/> [macOS 10.15](https://en.wikipedia.org/wiki/MacOS_Catalina) |

Our goal with compiler support is to make it as easy as possible for new
contributors to get started with development of the game, while also using the
Expand All @@ -32,11 +32,11 @@ At the time of writing:
which uses [gcc
14.0](https://fedoraproject.org/wiki/Changes/GNUToolchainF40).
* MSYS [offers gcc 12.2](https://packages.msys2.org/base).
* macOS 10.13+ has 96.0% [market
* macOS 10.15+ (macOS Catalina) has 96.0% [market
share](https://gs.statcounter.com/os-version-market-share/macos/desktop/worldwide)[^2]
and that corresponds to [XCode 10.1](https://xcodereleases.com/).
and that corresponds to [XCode 11.4](https://xcodereleases.com/).

[^2]: [Limit reported macOS release to 10.15 series](https://bugs.webkit.org/show_bug.cgi?id=216593)
[^2]: [macOS releases past 10.15 series can not be estimated faithfully](https://bugs.webkit.org/show_bug.cgi?id=216593)

With the supported compilers we can get all the C++17 language
features and [most but not all of the C++17 library
Expand Down

0 comments on commit 33bd0e9

Please sign in to comment.