clang isn't GNU C. So why does it define such values and why they are 4,2,1?
It also defines __GNUC_STDC_INLINE__=1 for some reason.
rev.126022
Yuri
clang isn't GNU C. So why does it define such values and why they are 4,2,1?
It also defines __GNUC_STDC_INLINE__=1 for some reason.
rev.126022
Yuri
It is mostly compatible with GCC 4.2 and providing the macros makes a
lot of code work without modifications. __GNUC_STDC_INLINE__ depends on
the choosen level of standard compliance. The (current?) behavior again
mimics GCC 4.2.1.
Joerg