mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
https://github.com/corretto/corretto-8 Amazon's no-cost, multi-platform, production-ready distribution of OpenJDK 8 This aport can be cross-compiled with the same method used for openjdk11/17/21, unlike community/openjdk8 (icedtea).
15 lines
483 B
Diff
15 lines
483 B
Diff
musl needs LD_LIBRARY_PATH set because when .so is opened with dlopen(/abs/path)
|
|
it does not qualify for providing symbols for NEEDED dependency.
|
|
|
|
--- openjdk.orig/jdk/src/solaris/bin/java_md_solinux.c
|
|
+++ openjdk/jdk/src/solaris/bin/java_md_solinux.c
|
|
@@ -291,6 +291,8 @@
|
|
char *dmllp = NULL;
|
|
char *p; /* a utility pointer */
|
|
|
|
+ return JNI_TRUE;
|
|
+
|
|
#ifdef AIX
|
|
/* We always have to set the LIBPATH on AIX because ld doesn't support $ORIGIN. */
|
|
return JNI_TRUE;
|