Details
Diff Detail
Event Timeline
Looks OK.
Is it possible to add a configure time option to set -mno-odd-spreg by default? And also a configure time setting to specify the default -mfp option?
The reason is to enable building tools which target a specific ABI variant without extra options giving a system integrator the chance to control the ABI variant which is generally used. In the android NDK this would be set to -mfpxx and -mno-odd-spreg.
Matthew
Is it possible to add a configure time option to set -mno-odd-spreg by default? And also a configure time setting to specify the default -mfp option?
I don't know I'm afraid. I would have thought that this is possible but I don't know how yet.
LGTM with the small note.
include/clang/Driver/Options.td | ||
---|---|---|
1242 | Not sure that we need to make this help text visible by default. Unfortunately there is no well defined policy. Most of "m" options do not have help text or have Flags<[HelpHidden]> flag. |
include/clang/Driver/Options.td | ||
---|---|---|
1242 | Before committing I added Flags<[HelpHidden]> for consistency with the others. |
Not sure that we need to make this help text visible by default. Unfortunately there is no well defined policy. Most of "m" options do not have help text or have Flags<[HelpHidden]> flag.