-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8352284: EXTRA_CFLAGS incorrectly applied to BUILD_LIBJVM src/hotspot C++ source files #24115
Conversation
… C++ source files Signed-off-by: Patrick Zhang <[email protected]>
Signed-off-by: Patrick Zhang <[email protected]>
Signed-off-by: Patrick Zhang <[email protected]>
👋 Welcome back qpzhang! A progress list of the required criteria for merging this PR into |
@cnqpzhang 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 189 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@erikj79) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
@cnqpzhang The following label 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 list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I understand what you are trying to achieve, but this isn't the right solution.
The EXTRA_[C|CXX]FLAGS
variables are not meant to be parameters to SetupNativeCompilation. In flags.m4 you can see that the intent is to not even export EXTRA_[C|CXX]FLAGS
from spec.gmk:
# FIXME: For compatibility, export this as EXTRA_CFLAGS for now.
EXTRA_CFLAGS="$MACHINE_FLAG $USER_CFLAGS"
EXTRA_CXXFLAGS="$MACHINE_FLAG $USER_CXXFLAGS"
EXTRA_LDFLAGS="$MACHINE_FLAG $USER_LDFLAGS"
EXTRA_ASFLAGS="$USER_ASFLAGS"
We don't want library/executable specific makefiles to have to worry about the extra flags supplied by the user. Those should be handled in lower layers. Given that, I agree with the change in JvmFlags.gmk. We shouldn't add $(EXTRA_CFLAGS)
there. If we wanted those added, it should be done in configure, where EXTRA_CXXFLAGS
are added, but not doing that is your whole goal here. Wouldn't just the change in JvmFlags.gmk be enough to solve your issue?
Actually, the content of EXTRA_[C|CXX]FLAGS is hidden (and mixed together) inside the
No, it seems not doable. |
Signed-off-by: Patrick Zhang <[email protected]>
Forgot to mention, one of my initial try-outs (hacking) was: Remove
|
I can see what you mean. The current state of the build system is that we aren't consistent with the use of CFLAGS vs CXXFLAGS. For libraries that are C++ or use a mix of C and C++, SetupNativeLibrary will accept flags in two ways, either as just CFLAGS, which will then apply to both C and C++, or as separate CFLAGS and CXXFLAGS, which will then be treated separately. To properly solve your issue, we would need to stop this automatic fallback and be explicit with CFLAGS vs CXXFLAGS throughout the build system. That would certainly be cleaner. Hotspot is currently only C++ and there is little reason to believe that would ever change. The build setup for hotspot is currently only setting CFLAGS, which will then get applied to CXXFLAGS as well. Given that we are currently going with that choice, I think the correct fix is indeed to just remove |
Signed-off-by: Patrick Zhang <[email protected]>
Signed-off-by: Patrick Zhang <[email protected]>
Thanks for your kindly advise @erikj79, I updated it accordingly. |
Hi @magicus , do you think my above clarifications regarding the unrelated code change and added comments acceptable, or do you still recommend removing those sections before merging? Thank you for confirming, and any advice on further changes. |
I still have reservations. Let me re-read the patch to see if I can better understand what part of the code you find hard to understand, so I can be more constructive in my criticism. |
I've now re-read it all, and I stand behind my position that the comment should be removed. I agree that the CFLAGS handling in the build system is obscure, and surprising. There is an old JBS issue from 2012 (!) tracking this: https://bugs.openjdk.org/browse/JDK-8001877 (see also https://bugs.openjdk.org/browse/JDK-8333089). It's a shame that this has not been fixed, but the problem is that the current situation is so complicated that it will take quite an effort to disentangle the mess, which combined with the limited ways to raise abstraction available in make makes this a much larger undertaking than maybe is apparent at first glance. So in this context, having the proposed comment at that place only just adds to the confusion. |
Signed-off-by: Patrick Zhang <[email protected]>
Signed-off-by: Patrick Zhang <[email protected]>
Sure, I removed the comments with a new commit. |
/integrate |
@cnqpzhang |
Thank you! /sponsor |
Going to push as commit 1809138.
Your commit was automatically rebased without conflicts. |
@magicus @cnqpzhang Pushed as commit 1809138. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Building jdk with
--with-extra-cflags='-Wno-incompatible-pointer-types'
triggers 1000+ warning messages likecc1plus: warning: command-line option ‘-Wno-incompatible-pointer-types’ is valid for C/ObjC but not for C++
.The root cause is that
JVM_CFLAGS
which contains bothEXTRA_CXXFLAGS
andEXTRA_CFLAGS
when compilingsrc/hotspot
C++ source files and buildingBUILD_LIBJVM
.This PR does:
EXTRA_CFLAGS
orEXTRA_CXXFLAGS
intoJVM_CFLAGS
before callingSetupJdkLibrary
, instead letSetupCompilerFlags
accept and mergeEXTRA_CFLAGS
andEXTRA_CXXFLAGS
passed fromSetupJdkLibrary
as parameters, so CPP compilation will only seeEXTRA_CXXFLAGS
as expected.PCH_COMMAND
to useEXTRA_CXXFLAGS
as precompiled.hpp.gch should not be compiled withEXTRA_CFLAGS
.STATIC_LIB_CFLAGS
inFlags.gmk
to-DSTATIC_BUILD=1
, which was missed by cbab40bc for the refactor of building static libs.Tests: Passed jdk building on an AArch64 Linux system and tier1 sanity tests, also passed OpenJDK GHA Sanity Checks.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/24115/head:pull/24115
$ git checkout pull/24115
Update a local copy of the PR:
$ git checkout pull/24115
$ git pull https://git.openjdk.org/jdk.git pull/24115/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 24115
View PR using the GUI difftool:
$ git pr show -t 24115
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/24115.diff
Using Webrev
Link to Webrev Comment