-
- Downloads
Define a macro to indicate if the compiler is actually GCC.
Pretty much all new compilers these days will define all the GCC macros so it's impossible to detect GCC from predefined macros without adding a list of all the compilers that pretend to be GCC if defined(__GNUC__) && !defined(__clang__) && !defined(____INTEL_COMPILER)
Please register or sign in to comment