-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Okay, so I've got the fresh pull of the jdk/jdk repository sources in $/workspace/jdk/jdk directory. This I can build just fine (configure, then make), with the "Boot JDK" of OpenJDK13 installed and working.
I've tried several of your eclipse projects, and while I eventually did manage to get it to pull in the linked resources (packages in the jdk source tree), in every case there are a lot of classes it can't find.
In some cases, it can't find classes in the very same directory as the source file that can't find the classes, such as when I've tried to use your java.logging project. There are errors in both FileHandler.java and Handler.java indicating the it can't find classes in that same package, like LogManager and Filter.
I've also tried pulling your java.base project, in order to get at the Charset.java and CoderResult.java in java.nio.charset, but somehow there's important classes just missing, like ByteBuffer and CharBuffer... but I don't know where they could have gone, this is a fresh pull of the repository.
Anyway, I've tried manually re-creating your pattern too, creating an empty project and using "linked resoures" to pull in certain jdk projects, but I keep getting the same type of problem. I guess getting the right combinations of dependencies is the trick, hence your repo here.
There seems to be scarce resources on how to get into working on the JDK, especially with eclipse, so I sure appreciate your repo, and any guidance you can give is much appreciated.