Reputation: 1
I cloned openjdk8u source with mercurial, but found it is missing some files such as java_lang_String.h
. Where do I get the files?
Upvotes: 0
Views: 132
Reputation: 719309
It is not "missing". It is not included in the OpenJDK source tree by design. See
If you need this file, you can generate it using the JNI header generator.
javah
tool.javac -h
; see https://docs.oracle.com/javase/9/tools/javah.htm#JSWOR687Upvotes: 1