Skip to content

Commit bff41c2

Browse files
8308114: Bump minimum version of macOS for x64 to 11.0 (matching aarch64)
Reviewed-by: angorya, jvos
1 parent c1a1179 commit bff41c2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

buildSrc/mac.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ def defaultSdkPath = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOS
5555

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
58-
def isAarch64 = TARGET_ARCH == "aarch64" || TARGET_ARCH == "arm64";
59-
def macOSMinVersion = isAarch64 ? "11.0" : "10.12";
58+
def macOSMinVersion = "11.0";
6059
defineProperty("MACOSX_MIN_VERSION", macOSMinVersion);
6160

6261
def macOSMinVersionArr = macOSMinVersion.split("\\.")

0 commit comments

Comments
 (0)