Skip to content

Commit 6fe427f

Browse files
8266743: Crash on macOS 10.11 due to ignored @available 10.12 check
Reviewed-by: jvos
1 parent 52c076c commit 6fe427f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/mac.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def defaultSdkPath = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOS
5656
// Set the minimum API version that we require (developers do not need to override this)
5757
// Note that this is not necessarily the same as the preferred SDK version
5858
def isAarch64 = TARGET_ARCH == "aarch64" || TARGET_ARCH == "arm64";
59-
def macOSMinVersion = isAarch64 ? "11.0" : "10.12";
59+
def macOSMinVersion = isAarch64 ? "11.0" : "10.10";
6060
defineProperty("MACOSX_MIN_VERSION", macOSMinVersion);
6161

6262
// Create $buildDir/mac_tools.properties file and load props from it

0 commit comments

Comments
 (0)