Link Missing

2018-07-21 Thread mr rupplin
I find the last link doesn't have a valid document attached to it. http://openjdk.java.net/groups/build/ Build Infrastructure Group - OpenJDK Build Infrastructure Group. This group consists of those developers interested in and actively developing or maintai

JDK 8 Build Issue(s)

2018-07-21 Thread mr rupplin
I get a cannot compile for a "generic linux" when trying to build OpenJDK 8 on Mint. Thanks, Mr. Rupplin /sr software dev

JDK 10 Build Issue(s)

2018-07-21 Thread mr rupplin
I do not find the get_source.sh or the configure nor the complete makefile setup in the Mercurial pull from java.net. This is JDK 10 related. Thanks, Mr. M. Rupplin /sr software dev

JDK Memory Allocation

2018-07-21 Thread mr rupplin
Having looked for some while at the OpenJDK source code I am unable to find where the memory allocation occurs. I will be working very much with the JDK and would like to get a firm grasp on its underlying mechanisms. public class JustAsk { public static void main(String...args) {

Re: JDK 10 Build Issue(s)

2018-07-21 Thread David Buck
Hi Rupplin! For JDK 10 and later, get_source.sh script is no longer required for getting all of the open source code. It is now all in a single repository that can be cloned in a single step. Please see the following JEP for details. http://openjdk.java.net/jeps/296 Cheers, -Buck On 2018/0

Re: Short Question - About javac.c where is it?

2018-07-21 Thread David Buck
Hi Max! The compiler that compiles Java source code into Java bytecode is written entirely in Java itself. The only C code involved is the launcher executable, "javac" which (as explained by Erik) is simply a very small piece of JNI code that starts the JVM and points it to the main class. Ev