@@ -22,7 +22,7 @@ If you have certain business reasons to not upgrade but still need something fix
22
22
23
23
#[[##]]# Supported Java versions
24
24
25
- junixsocket ${project.version} is fully compatible with Java 8 and newer (tested up to Java 20 ).
25
+ junixsocket ${project.version} is fully compatible with Java 8 and newer (tested up to Java 24 ).
26
26
27
27
#[[##]]# Supported Java VMs
28
28
@@ -35,6 +35,23 @@ More [details here](graalvm.html).
35
35
36
36
Since version 2.7.0, junixsocket runs on Android, too.
37
37
38
+ #[[##]]# Java 24 warnings
39
+
40
+ Java 24 introduced a warning when a library calls System.loadLibrary to load some native JNI code,
41
+ something like:
42
+
43
+ WARNING: A restricted method in java.lang.System has been called
44
+ WARNING: java.lang.System::loadLibrary has been called by org.newsclub.net.unix.NativeLibraryLoader$StandardLibraryCandidate in an unnamed module
45
+ WARNING: Use --enable-native-access=ALL-UNNAMED to avoid a warning for callers in this module
46
+ WARNING: Restricted methods will be blocked in a future release unless native access is enabled
47
+
48
+ For now, you can ignore this warning, but can also explicitly allow native access by adding a
49
+ corresponding `--enable-native-access=` statement when invoking your JVM that uses junixsocket.
50
+
51
+ If junixsocket is referenced by a modularized project, you could add
52
+ `--enable-native-access=org.newsclub.net.unix`. Otherwise (and this includes the selftest jar),
53
+ simplify specify `--enable-native-access=ALL-UNNAMED`
54
+
38
55
#[[##]]# Supported Platforms
39
56
40
57
The minimum set of supported (out of the box) platforms and processor architectures currently is:
0 commit comments