Skip to content

Commit 369b276

Browse files
committed
Add libpath
Signed-off-by: Darshan N <[email protected]>
1 parent ecde6b0 commit 369b276

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

openjdk/openjdk.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ ifneq ($(JDK_VERSION),8)
189189
# else if JDK_IMPL is openj9 or ibm
190190
else ifneq ($(filter openj9 ibm, $(JDK_IMPL)),)
191191
JVM_NATIVE_OPTIONS := -nativepath:"$(TESTIMAGE_PATH)$(D)openj9"
192+
# z/OS dynamic loader ignores -nativepath and uses LIBPATH
193+
ifeq ($(OS), OS/390)
194+
export LIBPATH := $(TESTIMAGE_PATH)$(D)hotspot$(D)jtreg$(D)native:$(LIBPATH)
195+
endif
192196
endif
193197
endif
194198
endif

0 commit comments

Comments
 (0)