We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
root-config --cflags
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Debug
REMOLL_CXX_FLAGS should not include a -O flag
REMOLL_CXX_FLAGS
-O
REMOLL_CXX_FLAGS contains the -O flag from root-config --cflags, i.e. what ROOT was compiled with
Probably needs to filter out -O[^ ]* in root-config, similar to how -I is filterd out.
-O[^ ]*
-I
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment: (where does this bug occur, have you tried other environments)
Steps to reproduce: (give a step by step account of how to trigger the bug)
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Debug
Expected Result: (what do you expect when you execute the steps above)
REMOLL_CXX_FLAGS
should not include a-O
flagActual Result: (what do you get when you execute the steps above)
REMOLL_CXX_FLAGS
contains the-O
flag fromroot-config --cflags
, i.e. what ROOT was compiled withProbably needs to filter out
-O[^ ]*
in root-config, similar to how-I
is filterd out.The text was updated successfully, but these errors were encountered: