-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8258407: Split up CompileJavaModules.gmk into make/modules/$M/Java.gmk #1779
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
Conversation
👋 Welcome back ihse! A progress list of the required criteria for merging this PR into |
@magicus The following labels will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command. |
/label remove 2d compiler core-libs hotspot-jfr kulla net serviceability |
@magicus The The The The The The |
Webrevs
|
…ng the global variable
Looks good to me. I assume you have run compare builds on all platforms. |
@magicus this pull request can not be integrated into git checkout modularize-java-part
git fetch https://git.openjdk.java.net/jdk master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push |
@erikj79 Actually, I had not done that. But it was a great idea. Now I have, and it looks good. :-) |
…rize-java-part
@magicus This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
/integrate |
Right now
CompileJavaModules.gmk
contains two different part: one part with the functionality needed to compile a java module, and one part were all special requirements for all modules are listed.The second part should be removed from
CompileJavaModules.gmk
, and instead listed directly for each individual module inmake/modules/$M/Java.gmk
.I used a special-written shell script to automatically extract the module-specific part from CompileJavaModules.gmk into the respective Java.gmk files, to avoid risking any hard-to-detect copy/paste errors. After this I did a
sed -i
to remove the module-specific prefix. All this makes me confident that I have correctly moved the variables (I realize this is hard to verify from the patch).Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/1779/head:pull/1779
$ git checkout pull/1779