E
Evan Lavelle
Guest
I'm like to get a list of these to handle conditional compilations for
different compilers. The only compiler that I know of that actually
has one is NC, but I couldn't find even that one on Google.
Does anyone know of any compilers that support these constants, and
their values?
Thanks -
Evan
[A manifest constant is a predefined constant; if you're writing C
code, for instance, you might say
#if defined __GNUC__
.... // code which is gnu-specific
#endif
]
different compilers. The only compiler that I know of that actually
has one is NC, but I couldn't find even that one on Google.
Does anyone know of any compilers that support these constants, and
their values?
Thanks -
Evan
[A manifest constant is a predefined constant; if you're writing C
code, for instance, you might say
#if defined __GNUC__
.... // code which is gnu-specific
#endif
]