-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Build fails with CLING_DEBUG=1 set #14593
Comments
hahnjo
added a commit
to hahnjo/root
that referenced
this issue
Feb 13, 2024
As noted in root-project#14593, the build fails during a rootcling execution when setting CLING_DEBUG=1 in the environment with error: invalid integral value '0 -fno-omit-frame-pointer' in '-O0 -fno-omit-frame-pointer' Upon investigation, it only works in the ROOT prompt because TCling turns on basic -O1 unless in rootcling. This overrides the (misformed) "-O0 -fno-omit-frame-pointer". Split the argument in two entries and move it after inserting the user-provided arguments to properly apply also on the prompt by now taking precedence over -O1. Closes root-project#14593
hahnjo
added a commit
that referenced
this issue
Feb 14, 2024
As noted in #14593, the build fails during a rootcling execution when setting CLING_DEBUG=1 in the environment with error: invalid integral value '0 -fno-omit-frame-pointer' in '-O0 -fno-omit-frame-pointer' Upon investigation, it only works in the ROOT prompt because TCling turns on basic -O1 unless in rootcling. This overrides the (misformed) "-O0 -fno-omit-frame-pointer". Split the argument in two entries and move it after inserting the user-provided arguments to properly apply also on the prompt by now taking precedence over -O1. Closes #14593
lobis
pushed a commit
to lobis/root
that referenced
this issue
Apr 10, 2024
As noted in root-project#14593, the build fails during a rootcling execution when setting CLING_DEBUG=1 in the environment with error: invalid integral value '0 -fno-omit-frame-pointer' in '-O0 -fno-omit-frame-pointer' Upon investigation, it only works in the ROOT prompt because TCling turns on basic -O1 unless in rootcling. This overrides the (misformed) "-O0 -fno-omit-frame-pointer". Split the argument in two entries and move it after inserting the user-provided arguments to properly apply also on the prompt by now taking precedence over -O1. Closes root-project#14593
silverweed
pushed a commit
to silverweed/root
that referenced
this issue
Aug 19, 2024
As noted in root-project#14593, the build fails during a rootcling execution when setting CLING_DEBUG=1 in the environment with error: invalid integral value '0 -fno-omit-frame-pointer' in '-O0 -fno-omit-frame-pointer' Upon investigation, it only works in the ROOT prompt because TCling turns on basic -O1 unless in rootcling. This overrides the (misformed) "-O0 -fno-omit-frame-pointer". Split the argument in two entries and move it after inserting the user-provided arguments to properly apply also on the prompt by now taking precedence over -O1. Closes root-project#14593
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check duplicate issues.
Description
ROOT fails to build when the environment variable
CLING_DEBUG=1
is set. When generatingG__Core.cxx, ../lib/Core.pcm
, it fails with the following error:Reproducer
CLING_DEBUG=1 ninja
ROOT version
6.31.01
Installation method
build from source
Operating system
Ubuntu 22.04
Additional context
No response
The text was updated successfully, but these errors were encountered: