Reputation: 83
I found the entry point for hotspot in openjdk 7u is located in the package "/share/tools/launcher/", but this package disappeared in openjdk 8u. Where is it? or where is the entry point for hotspot in openjdk 8u?
Upvotes: 0
Views: 321
Reputation: 98284
HotSpot JVM (libjvm.so) and Java launcher (java executable) are two different components.
The sources of Java launcher are in jdk
tree, not hotspot
:
http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/8ec1d42a9bad/src/share/bin
For more information see
Upvotes: 1