We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecde6b0 commit c9f8be2Copy full SHA for c9f8be2
openjdk/openjdk.mk
@@ -189,6 +189,10 @@ ifneq ($(JDK_VERSION),8)
189
# else if JDK_IMPL is openj9 or ibm
190
else ifneq ($(filter openj9 ibm, $(JDK_IMPL)),)
191
JVM_NATIVE_OPTIONS := -nativepath:"$(TESTIMAGE_PATH)$(D)openj9"
192
+ # z/OS dynamic loader ignores -nativepath and uses LIBPATH
193
+ ifeq ($(OS), zos)
194
+ export LIBPATH := $(TESTIMAGE_PATH)$(D)openj9:$(LIBPATH)
195
+ endif
196
endif
197
198
0 commit comments