Skip to content

Commit

Permalink
8308114: Bump minimum version of macOS for x64 to 11.0 (matching aarc…
Browse files Browse the repository at this point in the history
…h64)

Reviewed-by: angorya, jvos
  • Loading branch information
kevinrushforth committed May 16, 2023
1 parent c1a1179 commit bff41c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions buildSrc/mac.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ def defaultSdkPath = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOS

// Set the minimum API version that we require (developers do not need to override this)
// Note that this is not necessarily the same as the preferred SDK version
def isAarch64 = TARGET_ARCH == "aarch64" || TARGET_ARCH == "arm64";
def macOSMinVersion = isAarch64 ? "11.0" : "10.12";
def macOSMinVersion = "11.0";
defineProperty("MACOSX_MIN_VERSION", macOSMinVersion);

def macOSMinVersionArr = macOSMinVersion.split("\\.")
Expand Down

1 comment on commit bff41c2

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.