Skip to content

Commit

Permalink
Add support for AArch64 macOS in closed/openssl.gmk
Browse files Browse the repository at this point in the history
This commit adds support for AArch64 macOS in closed/openssl.gmk.

Signed-off-by: KONNO Kazuhiro <konno@jp.ibm.com>
  • Loading branch information
knn-k committed Feb 5, 2022
1 parent a1df726 commit 26b7e7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions closed/openssl.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ else ifeq ($(OPENJDK_TARGET_OS), linux)
else ifeq ($(OPENJDK_TARGET_OS), macosx)
ifneq (,$(filter arm64 x86_64, $(OPENJDK_TARGET_CPU)))
OPENSSL_TARGET := darwin64-$(OPENJDK_TARGET_CPU)-cc
else ifeq ($(OPENJDK_TARGET_CPU), aarch64)
OPENSSL_TARGET := darwin64-arm64-cc
endif
else ifeq ($(OPENJDK_TARGET_OS), windows)
ifeq ($(OPENJDK_TARGET_CPU), x86_64)
Expand Down

0 comments on commit 26b7e7c

Please sign in to comment.