File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# ===========================================================================
2- # (c) Copyright IBM Corp. 2018, 2023 All Rights Reserved
2+ # (c) Copyright IBM Corp. 2018, 2024 All Rights Reserved
33# ===========================================================================
44# This code is free software; you can redistribute it and/or modify it
55# under the terms of the GNU General Public License version 2 only, as
@@ -63,7 +63,11 @@ endif # windows
6363# Identify the desired openssl target configuration.
6464OPENSSL_TARGET :=
6565ifeq ($(OPENJDK_TARGET_OS), aix)
66- OPENSSL_TARGET := aix64-cc
66+ ifeq ($(TOOLCHAIN_TYPE), clang)
67+ OPENSSL_TARGET := aix64-clang
68+ else ifeq ($(TOOLCHAIN_TYPE), xlc)
69+ OPENSSL_TARGET := aix64-cc
70+ endif
6771else ifeq ($(OPENJDK_TARGET_OS), linux)
6872 ifneq (,$(filter aarch64 ppc64le x86_64, $(OPENJDK_TARGET_CPU)))
6973 OPENSSL_TARGET := linux-$(OPENJDK_TARGET_CPU)
You can’t perform that action at this time.
0 commit comments