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 1
1
# ===========================================================================
2
- # (c) Copyright IBM Corp. 2018, 2023 All Rights Reserved
2
+ # (c) Copyright IBM Corp. 2018, 2024 All Rights Reserved
3
3
# ===========================================================================
4
4
# This code is free software; you can redistribute it and/or modify it
5
5
# under the terms of the GNU General Public License version 2 only, as
@@ -63,7 +63,11 @@ endif # windows
63
63
# Identify the desired openssl target configuration.
64
64
OPENSSL_TARGET :=
65
65
ifeq ($(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
67
71
else ifeq ($(OPENJDK_TARGET_OS), linux)
68
72
ifneq (,$(filter aarch64 ppc64le x86_64, $(OPENJDK_TARGET_CPU)))
69
73
OPENSSL_TARGET := linux-$(OPENJDK_TARGET_CPU)
You can’t perform that action at this time.
0 commit comments