Login  Register

Re: hi, can jogl 2.3.2 run with jdk9 or jdk10.0.2 ?

Posted by george2008 on Aug 30, 2018; 3:15am
URL: https://forum.jogamp.org/hi-can-jogl-2-3-2-run-with-jdk9-or-jdk10-0-2-tp4039140p4039154.html

Question1:   which one is right?  A or B ?

A.

java --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED  -Xms2g -Xmx8g  -Dfile.encoding=UTF-8 com.xxx.uiapp.AppMain


B.

java --add-exports java.base/java.lang=ALL-UNNAMED --add-exports java.desktop/sun.awt=ALL-UNNAMED --add-exports java.desktop/sun.java2d=ALL-UNNAMED  -Xms2g -Xmx8g  -Dfile.encoding=UTF-8 com.xxx.uiapp.AppMain


Question2:  

Need these options when compiling *.java files to *.class files using javac command?