From: Marc R. <re...@gm...> - 2022-01-27 12:40:49
|
L.S., I pushed a new version of RxJrt.nrx on the new issues/4-modules branch. Any module jar file found on the paths provided in --add-modules will be reported. You need to load any extra modules not included in the run-time jrt:/ as follows: Either set JDK_JAVA_OPTIONS environment variable (note the semi-colon vs colon) On linux,mac : export JDK_JAVA_OPTIONS='--module-path path1:path2' On windows : set JDK_JAVA_OPTIONS="--module-path path1;path2" and then nrc -run RxJrt (or java RxJrt) Or java --module-path path1:path2 RxJrt Note, NetRexx does not yet load classes from extra modules, this is just preliminary work.. Marc |