this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update CMAKE_OSX_DEPLOYMENT_TARGET To 11.0

A bit of a backstory: macOS Big Sur was the first version of macOS to increment it's major version number from 10 to 11. Since Apple doesn't want to break old applications that assume the "10.x" version scheme, they applied a small hack in the xnu kernel to have older applications read off of the SystemVersionCompat.plist instead. So instead of seeing "11.6", the app would see "10.16" instead.

Since the macOS deployment target was not updated to BIg Sur's version, sw_vers would report "10.16". Fixes #1334

Thomas A d3a244cc 4592bb2e

+1 -1
+1 -1
CMakeLists.txt
··· 39 39 40 40 # technically ignored by CMake when building on non-Apple platforms, but it's already a standard variable for the 41 41 # SDK deployment target, so we'll just use it and then add it to the compiler flags manually 42 - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "The version of macOS we're simulating") 42 + set(CMAKE_OSX_DEPLOYMENT_TARGET 11.0 CACHE STRING "The version of macOS we're simulating") 43 43 44 44 project(darling) 45 45