-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically generate nb-javac from JDK sources #12
base: master
Are you sure you want to change the base?
Automatically generate nb-javac from JDK sources #12
Conversation
0d09dcf
to
60e817e
Compare
5fa0f8d
to
39be830
Compare
I can confirm that this builds fine with JDK 14.0.2, and I've uploaded the bits for testing. https://oss.sonatype.org/content/repositories/comdukescript-1139/com/dukescript/nbjavac/nb-javac/ |
The build works fine with JDK 14.0.2, and the staged bits are available here: |
this is pretty cool. How comes that this didn't make it in yet? |
@JaroslavTulach : does this also work with JDK 17 or only JDK 14 ? |
upgrade javac dependency to 19.0.1.
The nb-javac overview proposal suggests to minimize differences between JDK's
javac
andnb-javac
by automatically applying advanced refactorings and thus making sure thejavac
from recent JDK can run on JDK8. This PR is implementation of that idea.The best part of this PR is the deletion of more than
230 000
lines of code, that are no longer needed to be maintained. Rather than that the build script starts by checking out a JDK repository (currently at revisionJDK-16+36
). Thesrc/java.compiler
andsrc.jdk.compiler
sources are then massaged to use only JDK8 APIs using advanced refactorings transformations. As a result of that thenb-javac
sources can link against JDK8+ APIs.The next step is to take the code and compile the source to JDK8's bytecode. Once finished, the outcome remains the same: two JAR files in the
make/langtools/netbeans/nb-javac/dist/
folder. Those can be used and tested with any JDK8+.