Go to the documentation of this file.
16 # error You have to use the gnu compiler!
19 #define GCC_VERSION_CODE ((__GNUC__ * 100) + __GNUC_MINOR__)
20 #define GCC_PATCHLEVEL_CODE ((GCC_VERSION_CODE * 100) + __GNUC_PATCHLEVEL__)
23 #if (GCC_PATCHLEVEL_CODE >= 40403) // gcc 4.4.3 or newer
24 # define GCC_VERSION_OK
26 # if (GCC_VERSION_CODE >= 402) // gcc 4.2 is ok for clang
28 # define GCC_VERSION_OK
33 #ifndef GCC_VERSION_OK
34 # error Wrong compiler version (need at least gcc 4.4.3 or clang 4.2)
38 #error gccver.h included twice