I am a programmer and am very interested in the low-level implementation of Java. I want to contribute to OpenJDK. I have downloaded the source code of OpenJDK 7.0.

However, there are thousands of files. I am facing a couple of problems.

  1. Where can I find the project structure details? I don't know where the starting point is.
  2. In order to efficiently debug, what IDE should I use?
link|improve this question

57% accept rate
feedback

1 Answer

After downloading the source. Save it in your local repository. Open it using an IDE, You can use Eclipse IDE.(import already exixsting projects wiard can help you)

To connect to Git you would need the GIT plug-in for eclipse for that. you can take help from http://wiki.eclipse.org/Git

Once you are able to compile the code you can go through it and try understanding it.

Alex, you cant just commit into OpenJDK there is something called as Oracle Contributor Agreement which is required for anyone to commit in OpenjDK/GlassFish etc source.

Read this for more details : http://openjdk.java.net/contribute/

link|improve this answer
I know I cannot directly commit into OpenJDK. I would understand OpenJDK first before I modify the code. I will try eclipse tonight. Thanks! – Alex Yeung Oct 5 '11 at 6:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.