Login  Register

Re: GL_ARB_vertex_buffer_object not available on Mac?

Posted by Wade Walker on Dec 22, 2018; 4:54pm
URL: https://forum.jogamp.org/GL-ARB-vertex-buffer-object-not-available-on-Mac-tp4039309p4039340.html

After fixing the --bootclasspath reference to rt.jar, the next problem is the Javadoc builder. It's using the old Taglet interface in com.sun.tools.doclets, which now in Java 9 needs to be updated to the one in jdk.javadoc.doclet (see https://openjdk.java.net/jeps/221 for more information).

I've got a fix for this, though it's not checked in yet. You can follow my progress in https://github.com/WadeWalker/gluegen/tree/java-11-fixes.

The next thing after the Taglet is the fact that the javah command doesn't exist in Java 10 and later :) Apparently this needs to be fixed by changing from the Ant javah task to using  javac task using (see https://ant.apache.org/manual-1.9.x/Tasks/javah.html and https://ant.apache.org/manual-1.9.x/Tasks/javac.html).