CMakeCCompilerId.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. #ifdef __cplusplus
  2. # error "A C++ compiler has been selected for C."
  3. #endif
  4. /* Version number components: V=Version, R=Revision, P=Patch
  5. Version date components: YYYY=Year, MM=Month, DD=Day */
  6. #if defined(__18CXX)
  7. # define ID_VOID_MAIN
  8. #endif
  9. #if defined(__INTEL_COMPILER) || defined(__ICC)
  10. # define COMPILER_ID "Intel"
  11. /* __INTEL_COMPILER = VRP */
  12. # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
  13. # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
  14. # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
  15. # if defined(__INTEL_COMPILER_BUILD_DATE)
  16. /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
  17. # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
  18. # endif
  19. #elif defined(__PATHCC__)
  20. # define COMPILER_ID "PathScale"
  21. # define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
  22. # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
  23. # if defined(__PATHCC_PATCHLEVEL__)
  24. # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
  25. # endif
  26. #elif defined(__clang__)
  27. # define COMPILER_ID "Clang"
  28. # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
  29. # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
  30. # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
  31. #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
  32. # define COMPILER_ID "Embarcadero"
  33. # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
  34. # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
  35. # define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF)
  36. #elif defined(__BORLANDC__)
  37. # define COMPILER_ID "Borland"
  38. /* __BORLANDC__ = 0xVRR */
  39. # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
  40. # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
  41. #elif defined(__WATCOMC__)
  42. # define COMPILER_ID "Watcom"
  43. /* __WATCOMC__ = VVRR */
  44. # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
  45. # define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
  46. #elif defined(__SUNPRO_C)
  47. # define COMPILER_ID "SunPro"
  48. # if __SUNPRO_C >= 0x5100
  49. /* __SUNPRO_C = 0xVRRP */
  50. # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
  51. # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
  52. # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
  53. # else
  54. /* __SUNPRO_C = 0xVRP */
  55. # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
  56. # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
  57. # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
  58. # endif
  59. #elif defined(__HP_cc)
  60. # define COMPILER_ID "HP"
  61. /* __HP_cc = VVRRPP */
  62. # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
  63. # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
  64. # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
  65. #elif defined(__DECC)
  66. # define COMPILER_ID "Compaq"
  67. /* __DECC_VER = VVRRTPPPP */
  68. # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
  69. # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
  70. # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
  71. #elif defined(__IBMC__)
  72. # if defined(__COMPILER_VER__)
  73. # define COMPILER_ID "zOS"
  74. # else
  75. # if __IBMC__ >= 800
  76. # define COMPILER_ID "XL"
  77. # else
  78. # define COMPILER_ID "VisualAge"
  79. # endif
  80. /* __IBMC__ = VRP */
  81. # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
  82. # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
  83. # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
  84. # endif
  85. #elif defined(__PGI)
  86. # define COMPILER_ID "PGI"
  87. # define COMPILER_VERSION_MAJOR DEC(__PGIC__)
  88. # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
  89. # if defined(__PGIC_PATCHLEVEL__)
  90. # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
  91. # endif
  92. #elif defined(_CRAYC)
  93. # define COMPILER_ID "Cray"
  94. # define COMPILER_VERSION_MAJOR DEC(_RELEASE)
  95. # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
  96. #elif defined(__TI_COMPILER_VERSION__)
  97. # define COMPILER_ID "TI"
  98. /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
  99. # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
  100. # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
  101. # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
  102. #elif defined(__TINYC__)
  103. # define COMPILER_ID "TinyCC"
  104. #elif defined(__SCO_VERSION__)
  105. # define COMPILER_ID "SCO"
  106. #elif defined(__GNUC__)
  107. # define COMPILER_ID "GNU"
  108. # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
  109. # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
  110. # if defined(__GNUC_PATCHLEVEL__)
  111. # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
  112. # endif
  113. #elif defined(_MSC_VER)
  114. # define COMPILER_ID "MSVC"
  115. /* _MSC_VER = VVRR */
  116. # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
  117. # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
  118. # if defined(_MSC_FULL_VER)
  119. # if _MSC_VER >= 1400
  120. /* _MSC_FULL_VER = VVRRPPPPP */
  121. # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
  122. # else
  123. /* _MSC_FULL_VER = VVRRPPPP */
  124. # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
  125. # endif
  126. # endif
  127. # if defined(_MSC_BUILD)
  128. # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
  129. # endif
  130. /* Analog VisualDSP++ >= 4.5.6 */
  131. #elif defined(__VISUALDSPVERSION__)
  132. # define COMPILER_ID "ADSP"
  133. /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
  134. # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
  135. # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
  136. # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
  137. /* Analog VisualDSP++ < 4.5.6 */
  138. #elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
  139. # define COMPILER_ID "ADSP"
  140. /* IAR Systems compiler for embedded systems.
  141. http://www.iar.com */
  142. #elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
  143. # define COMPILER_ID "IAR"
  144. /* sdcc, the small devices C compiler for embedded systems,
  145. http://sdcc.sourceforge.net */
  146. #elif defined(SDCC)
  147. # define COMPILER_ID "SDCC"
  148. /* SDCC = VRP */
  149. # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
  150. # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
  151. # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
  152. #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  153. # define COMPILER_ID "MIPSpro"
  154. # if defined(_SGI_COMPILER_VERSION)
  155. /* _SGI_COMPILER_VERSION = VRP */
  156. # define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
  157. # define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
  158. # define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
  159. # else
  160. /* _COMPILER_VERSION = VRP */
  161. # define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
  162. # define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
  163. # define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
  164. # endif
  165. /* This compiler is either not known or is too old to define an
  166. identification macro. Try to identify the platform and guess that
  167. it is the native compiler. */
  168. #elif defined(__sgi)
  169. # define COMPILER_ID "MIPSpro"
  170. #elif defined(__hpux) || defined(__hpua)
  171. # define COMPILER_ID "HP"
  172. #else /* unknown compiler */
  173. # define COMPILER_ID ""
  174. #endif
  175. /* Construct the string literal in pieces to prevent the source from
  176. getting matched. Store it in a pointer rather than an array
  177. because some compilers will just produce instructions to fill the
  178. array rather than assigning a pointer to a static array. */
  179. char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  180. /* Identify known platforms by name. */
  181. #if defined(__linux) || defined(__linux__) || defined(linux)
  182. # define PLATFORM_ID "Linux"
  183. #elif defined(__CYGWIN__)
  184. # define PLATFORM_ID "Cygwin"
  185. #elif defined(__MINGW32__)
  186. # define PLATFORM_ID "MinGW"
  187. #elif defined(__APPLE__)
  188. # define PLATFORM_ID "Darwin"
  189. #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  190. # define PLATFORM_ID "Windows"
  191. #elif defined(__FreeBSD__) || defined(__FreeBSD)
  192. # define PLATFORM_ID "FreeBSD"
  193. #elif defined(__NetBSD__) || defined(__NetBSD)
  194. # define PLATFORM_ID "NetBSD"
  195. #elif defined(__OpenBSD__) || defined(__OPENBSD)
  196. # define PLATFORM_ID "OpenBSD"
  197. #elif defined(__sun) || defined(sun)
  198. # define PLATFORM_ID "SunOS"
  199. #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  200. # define PLATFORM_ID "AIX"
  201. #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  202. # define PLATFORM_ID "IRIX"
  203. #elif defined(__hpux) || defined(__hpux__)
  204. # define PLATFORM_ID "HP-UX"
  205. #elif defined(__HAIKU__)
  206. # define PLATFORM_ID "Haiku"
  207. #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  208. # define PLATFORM_ID "BeOS"
  209. #elif defined(__QNX__) || defined(__QNXNTO__)
  210. # define PLATFORM_ID "QNX"
  211. #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  212. # define PLATFORM_ID "Tru64"
  213. #elif defined(__riscos) || defined(__riscos__)
  214. # define PLATFORM_ID "RISCos"
  215. #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  216. # define PLATFORM_ID "SINIX"
  217. #elif defined(__UNIX_SV__)
  218. # define PLATFORM_ID "UNIX_SV"
  219. #elif defined(__bsdos__)
  220. # define PLATFORM_ID "BSDOS"
  221. #elif defined(_MPRAS) || defined(MPRAS)
  222. # define PLATFORM_ID "MP-RAS"
  223. #elif defined(__osf) || defined(__osf__)
  224. # define PLATFORM_ID "OSF1"
  225. #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  226. # define PLATFORM_ID "SCO_SV"
  227. #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  228. # define PLATFORM_ID "ULTRIX"
  229. #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  230. # define PLATFORM_ID "Xenix"
  231. #else /* unknown platform */
  232. # define PLATFORM_ID ""
  233. #endif
  234. /* For windows compilers MSVC and Intel we can determine
  235. the architecture of the compiler being used. This is because
  236. the compilers do not have flags that can change the architecture,
  237. but rather depend on which compiler is being used
  238. */
  239. #if defined(_WIN32) && defined(_MSC_VER)
  240. # if defined(_M_IA64)
  241. # define ARCHITECTURE_ID "IA64"
  242. # elif defined(_M_X64) || defined(_M_AMD64)
  243. # define ARCHITECTURE_ID "x64"
  244. # elif defined(_M_IX86)
  245. # define ARCHITECTURE_ID "X86"
  246. # elif defined(_M_ARM)
  247. # define ARCHITECTURE_ID "ARM"
  248. # elif defined(_M_MIPS)
  249. # define ARCHITECTURE_ID "MIPS"
  250. # elif defined(_M_SH)
  251. # define ARCHITECTURE_ID "SHx"
  252. # else /* unknown architecture */
  253. # define ARCHITECTURE_ID ""
  254. # endif
  255. #else
  256. # define ARCHITECTURE_ID ""
  257. #endif
  258. /* Convert integer to decimal digit literals. */
  259. #define DEC(n) \
  260. ('0' + (((n) / 10000000)%10)), \
  261. ('0' + (((n) / 1000000)%10)), \
  262. ('0' + (((n) / 100000)%10)), \
  263. ('0' + (((n) / 10000)%10)), \
  264. ('0' + (((n) / 1000)%10)), \
  265. ('0' + (((n) / 100)%10)), \
  266. ('0' + (((n) / 10)%10)), \
  267. ('0' + ((n) % 10))
  268. /* Convert integer to hex digit literals. */
  269. #define HEX(n) \
  270. ('0' + ((n)>>28 & 0xF)), \
  271. ('0' + ((n)>>24 & 0xF)), \
  272. ('0' + ((n)>>20 & 0xF)), \
  273. ('0' + ((n)>>16 & 0xF)), \
  274. ('0' + ((n)>>12 & 0xF)), \
  275. ('0' + ((n)>>8 & 0xF)), \
  276. ('0' + ((n)>>4 & 0xF)), \
  277. ('0' + ((n) & 0xF))
  278. /* Construct a string literal encoding the version number components. */
  279. #ifdef COMPILER_VERSION_MAJOR
  280. char const info_version[] = {
  281. 'I', 'N', 'F', 'O', ':',
  282. 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
  283. COMPILER_VERSION_MAJOR,
  284. # ifdef COMPILER_VERSION_MINOR
  285. '.', COMPILER_VERSION_MINOR,
  286. # ifdef COMPILER_VERSION_PATCH
  287. '.', COMPILER_VERSION_PATCH,
  288. # ifdef COMPILER_VERSION_TWEAK
  289. '.', COMPILER_VERSION_TWEAK,
  290. # endif
  291. # endif
  292. # endif
  293. ']','\0'};
  294. #endif
  295. /* Construct the string literal in pieces to prevent the source from
  296. getting matched. Store it in a pointer rather than an array
  297. because some compilers will just produce instructions to fill the
  298. array rather than assigning a pointer to a static array. */
  299. char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
  300. char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
  301. /*--------------------------------------------------------------------------*/
  302. #ifdef ID_VOID_MAIN
  303. void main() {}
  304. #else
  305. int main(int argc, char* argv[])
  306. {
  307. int require = 0;
  308. require += info_compiler[argc];
  309. require += info_platform[argc];
  310. require += info_arch[argc];
  311. #ifdef COMPILER_VERSION_MAJOR
  312. require += info_version[argc];
  313. #endif
  314. (void)argv;
  315. return require;
  316. }
  317. #endif