-
|
I'm looking to add the Microchip XC32 compiler which is pretty much GCC with some PIC32 specific addons. The compiler technically supports most (all?) of the options / etc the underlying GCC version provides. However the compiler user manual states:
When adding the compiler to Meson should I strictly follow the compiler manual? Or is there some leeway so some of the underlying GCC features can be used (warnings not listed in the compiler manual, C/C++ stds, etc)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
I would err to the side of "allow underlying GCC things", unless we find that they don't work, and then we can special case them away. in otherwords, I'd directly inherit the |
Beta Was this translation helpful? Give feedback.
I would err to the side of "allow underlying GCC things", unless we find that they don't work, and then we can special case them away. in otherwords, I'd directly inherit the
GnuCCompilerclass and just override the name and special case the supported platforms etc.