2 # error "A C++ compiler has been selected for C."
12 #if defined(__INTEL_COMPILER) || defined(__ICC)
13 # define COMPILER_ID "Intel"
15 # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
16 # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
17 # if defined(__INTEL_COMPILER_UPDATE)
18 # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
20 # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
22 # if defined(__INTEL_COMPILER_BUILD_DATE)
24 # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
26 # if defined(_MSC_VER)
27 # define SIMULATE_ID "MSVC"
29 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
30 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
33 #elif defined(__PATHCC__)
34 # define COMPILER_ID "PathScale"
35 # define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
36 # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
37 # if defined(__PATHCC_PATCHLEVEL__)
38 # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
41 #elif defined(__clang__)
42 # if defined(__apple_build_version__)
43 # define COMPILER_ID "AppleClang"
44 # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
46 # define COMPILER_ID "Clang"
48 # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
49 # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
50 # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
51 # if defined(_MSC_VER)
52 # define SIMULATE_ID "MSVC"
54 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
55 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
58 #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
59 # define COMPILER_ID "Embarcadero"
60 # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
61 # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
62 # define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF)
64 #elif defined(__BORLANDC__)
65 # define COMPILER_ID "Borland"
67 # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
68 # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
70 #elif defined(__WATCOMC__)
71 # define COMPILER_ID "Watcom"
73 # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
74 # define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
76 #elif defined(__SUNPRO_C)
77 # define COMPILER_ID "SunPro"
78 # if __SUNPRO_C >= 0x5100
80 # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
81 # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
82 # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
85 # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
86 # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
87 # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
90 #elif defined(__HP_cc)
91 # define COMPILER_ID "HP"
93 # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
94 # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
95 # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
98 # define COMPILER_ID "Compaq"
100 # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
101 # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
102 # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
104 #elif defined(__IBMC__)
105 # if defined(__COMPILER_VER__)
106 # define COMPILER_ID "zOS"
109 # define COMPILER_ID "XL"
111 # define COMPILER_ID "VisualAge"
114 # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
115 # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
116 # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
120 # define COMPILER_ID "PGI"
121 # define COMPILER_VERSION_MAJOR DEC(__PGIC__)
122 # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
123 # if defined(__PGIC_PATCHLEVEL__)
124 # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
127 #elif defined(_CRAYC)
128 # define COMPILER_ID "Cray"
129 # define COMPILER_VERSION_MAJOR DEC(_RELEASE)
130 # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
132 #elif defined(__TI_COMPILER_VERSION__)
133 # define COMPILER_ID "TI"
135 # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
136 # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
137 # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
139 #elif defined(__TINYC__)
140 # define COMPILER_ID "TinyCC"
142 #elif defined(__SCO_VERSION__)
143 # define COMPILER_ID "SCO"
145 #elif defined(__GNUC__)
146 # define COMPILER_ID "GNU"
147 # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
148 # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
149 # if defined(__GNUC_PATCHLEVEL__)
150 # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
153 #elif defined(_MSC_VER)
154 # define COMPILER_ID "MSVC"
156 # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
157 # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
158 # if defined(_MSC_FULL_VER)
159 # if _MSC_VER >= 1400
161 # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
164 # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
167 # if defined(_MSC_BUILD)
168 # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
172 #elif defined(__VISUALDSPVERSION__)
173 # define COMPILER_ID "ADSP"
175 # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
176 # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
177 # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
180 #elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
181 # define COMPILER_ID "ADSP"
185 #elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
186 # define COMPILER_ID "IAR"
191 # define COMPILER_ID "SDCC"
193 # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
194 # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
195 # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
197 #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
198 # define COMPILER_ID "MIPSpro"
199 # if defined(_SGI_COMPILER_VERSION)
201 # define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
202 # define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
203 # define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
206 # define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
207 # define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
208 # define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
215 # define COMPILER_ID "MIPSpro"
217 #elif defined(__hpux) || defined(__hpua)
218 # define COMPILER_ID "HP"
221 # define COMPILER_ID ""
229 char const* info_compiler =
"INFO" ":" "compiler[" COMPILER_ID
"]";
231 char const* info_simulate =
"INFO" ":" "simulate[" SIMULATE_ID
"]";
235 char const* qnxnto =
"INFO" ":" "qnxnto";
239 #if defined(__linux) || defined(__linux__) || defined(linux)
240 # define PLATFORM_ID "Linux"
242 #elif defined(__CYGWIN__)
243 # define PLATFORM_ID "Cygwin"
245 #elif defined(__MINGW32__)
246 # define PLATFORM_ID "MinGW"
248 #elif defined(__APPLE__)
249 # define PLATFORM_ID "Darwin"
251 #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
252 # define PLATFORM_ID "Windows"
254 #elif defined(__FreeBSD__) || defined(__FreeBSD)
255 # define PLATFORM_ID "FreeBSD"
257 #elif defined(__NetBSD__) || defined(__NetBSD)
258 # define PLATFORM_ID "NetBSD"
260 #elif defined(__OpenBSD__) || defined(__OPENBSD)
261 # define PLATFORM_ID "OpenBSD"
263 #elif defined(__sun) || defined(sun)
264 # define PLATFORM_ID "SunOS"
266 #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
267 # define PLATFORM_ID "AIX"
269 #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
270 # define PLATFORM_ID "IRIX"
272 #elif defined(__hpux) || defined(__hpux__)
273 # define PLATFORM_ID "HP-UX"
275 #elif defined(__HAIKU__)
276 # define PLATFORM_ID "Haiku"
278 #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
279 # define PLATFORM_ID "BeOS"
281 #elif defined(__QNX__) || defined(__QNXNTO__)
282 # define PLATFORM_ID "QNX"
284 #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
285 # define PLATFORM_ID "Tru64"
287 #elif defined(__riscos) || defined(__riscos__)
288 # define PLATFORM_ID "RISCos"
290 #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
291 # define PLATFORM_ID "SINIX"
293 #elif defined(__UNIX_SV__)
294 # define PLATFORM_ID "UNIX_SV"
296 #elif defined(__bsdos__)
297 # define PLATFORM_ID "BSDOS"
299 #elif defined(_MPRAS) || defined(MPRAS)
300 # define PLATFORM_ID "MP-RAS"
302 #elif defined(__osf) || defined(__osf__)
303 # define PLATFORM_ID "OSF1"
305 #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
306 # define PLATFORM_ID "SCO_SV"
308 #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
309 # define PLATFORM_ID "ULTRIX"
311 #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
312 # define PLATFORM_ID "Xenix"
315 # define PLATFORM_ID ""
324 #if defined(_WIN32) && defined(_MSC_VER)
325 # if defined(_M_IA64)
326 # define ARCHITECTURE_ID "IA64"
328 # elif defined(_M_X64) || defined(_M_AMD64)
329 # define ARCHITECTURE_ID "x64"
331 # elif defined(_M_IX86)
332 # define ARCHITECTURE_ID "X86"
334 # elif defined(_M_ARM)
335 # define ARCHITECTURE_ID "ARM"
337 # elif defined(_M_MIPS)
338 # define ARCHITECTURE_ID "MIPS"
340 # elif defined(_M_SH)
341 # define ARCHITECTURE_ID "SHx"
344 # define ARCHITECTURE_ID ""
348 # define ARCHITECTURE_ID ""
353 ('0' + (((n) / 10000000)%10)), \
354 ('0' + (((n) / 1000000)%10)), \
355 ('0' + (((n) / 100000)%10)), \
356 ('0' + (((n) / 10000)%10)), \
357 ('0' + (((n) / 1000)%10)), \
358 ('0' + (((n) / 100)%10)), \
359 ('0' + (((n) / 10)%10)), \
364 ('0' + ((n)>>28 & 0xF)), \
365 ('0' + ((n)>>24 & 0xF)), \
366 ('0' + ((n)>>20 & 0xF)), \
367 ('0' + ((n)>>16 & 0xF)), \
368 ('0' + ((n)>>12 & 0xF)), \
369 ('0' + ((n)>>8 & 0xF)), \
370 ('0' + ((n)>>4 & 0xF)), \
374 #ifdef COMPILER_VERSION_MAJOR
375 char const info_version[] = {
376 'I',
'N',
'F',
'O',
':',
377 'c',
'o',
'm',
'p',
'i',
'l',
'e',
'r',
'_',
'v',
'e',
'r',
's',
'i',
'o',
'n',
'[',
378 COMPILER_VERSION_MAJOR,
379 # ifdef COMPILER_VERSION_MINOR
380 '.', COMPILER_VERSION_MINOR,
381 # ifdef COMPILER_VERSION_PATCH
382 '.', COMPILER_VERSION_PATCH,
383 # ifdef COMPILER_VERSION_TWEAK
384 '.', COMPILER_VERSION_TWEAK,
392 #ifdef SIMULATE_VERSION_MAJOR
393 char const info_simulate_version[] = {
394 'I',
'N',
'F',
'O',
':',
395 's',
'i',
'm',
'u',
'l',
'a',
't',
'e',
'_',
'v',
'e',
'r',
's',
'i',
'o',
'n',
'[',
396 SIMULATE_VERSION_MAJOR,
397 # ifdef SIMULATE_VERSION_MINOR
398 '.', SIMULATE_VERSION_MINOR,
399 # ifdef SIMULATE_VERSION_PATCH
400 '.', SIMULATE_VERSION_PATCH,
401 # ifdef SIMULATE_VERSION_TWEAK
402 '.', SIMULATE_VERSION_TWEAK,
413 char const* info_platform =
"INFO" ":" "platform[" PLATFORM_ID
"]";
414 char const* info_arch =
"INFO" ":" "arch[" ARCHITECTURE_ID
"]";
424 int main(
int argc,
char* argv[])
427 require += info_compiler[argc];
428 require += info_platform[argc];
429 require += info_arch[argc];
430 #ifdef COMPILER_VERSION_MAJOR
431 require += info_version[argc];
434 require += info_simulate[argc];
436 #ifdef SIMULATE_VERSION_MAJOR
437 require += info_simulate_version[argc];