Rizin
unix-like reverse engineering framework and cli tools
CMakeCCompilerId.c
Go to the documentation of this file.
1 #ifdef __cplusplus
2 # error "A C++ compiler has been selected for C."
3 #endif
4 
5 #if defined(__18CXX)
6 # define ID_VOID_MAIN
7 #endif
8 #if defined(__CLASSIC_C__)
9 /* cv-qualifiers did not exist in K&R C */
10 # define const
11 # define volatile
12 #endif
13 
14 #if !defined(__has_include)
15 /* If the compiler does not have __has_include, pretend the answer is
16  always no. */
17 # define __has_include(x) 0
18 #endif
19 
20 
21 /* Version number components: V=Version, R=Revision, P=Patch
22  Version date components: YYYY=Year, MM=Month, DD=Day */
23 
24 #if defined(__INTEL_COMPILER) || defined(__ICC)
25 # define COMPILER_ID "Intel"
26 # if defined(_MSC_VER)
27 # define SIMULATE_ID "MSVC"
28 # endif
29 # if defined(__GNUC__)
30 # define SIMULATE_ID "GNU"
31 # endif
32  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
33  except that a few beta releases use the old format with V=2021. */
34 # if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
35 # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
36 # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
37 # if defined(__INTEL_COMPILER_UPDATE)
38 # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
39 # else
40 # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
41 # endif
42 # else
43 # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
44 # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
45  /* The third version component from --version is an update index,
46  but no macro is provided for it. */
47 # define COMPILER_VERSION_PATCH DEC(0)
48 # endif
49 # if defined(__INTEL_COMPILER_BUILD_DATE)
50  /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
51 # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
52 # endif
53 # if defined(_MSC_VER)
54  /* _MSC_VER = VVRR */
55 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
56 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
57 # endif
58 # if defined(__GNUC__)
59 # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
60 # elif defined(__GNUG__)
61 # define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
62 # endif
63 # if defined(__GNUC_MINOR__)
64 # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
65 # endif
66 # if defined(__GNUC_PATCHLEVEL__)
67 # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
68 # endif
69 
70 #elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
71 # define COMPILER_ID "IntelLLVM"
72 #if defined(_MSC_VER)
73 # define SIMULATE_ID "MSVC"
74 #endif
75 #if defined(__GNUC__)
76 # define SIMULATE_ID "GNU"
77 #endif
78 /* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
79  * later. Look for 6 digit vs. 8 digit version number to decide encoding.
80  * VVVV is no smaller than the current year when a version is released.
81  */
82 #if __INTEL_LLVM_COMPILER < 1000000L
83 # define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
84 # define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
85 # define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
86 #else
87 # define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
88 # define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
89 # define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
90 #endif
91 #if defined(_MSC_VER)
92  /* _MSC_VER = VVRR */
93 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
94 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
95 #endif
96 #if defined(__GNUC__)
97 # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
98 #elif defined(__GNUG__)
99 # define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
100 #endif
101 #if defined(__GNUC_MINOR__)
102 # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
103 #endif
104 #if defined(__GNUC_PATCHLEVEL__)
105 # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
106 #endif
107 
108 #elif defined(__PATHCC__)
109 # define COMPILER_ID "PathScale"
110 # define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
111 # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
112 # if defined(__PATHCC_PATCHLEVEL__)
113 # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
114 # endif
115 
116 #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
117 # define COMPILER_ID "Embarcadero"
118 # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
119 # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
120 # define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
121 
122 #elif defined(__BORLANDC__)
123 # define COMPILER_ID "Borland"
124  /* __BORLANDC__ = 0xVRR */
125 # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
126 # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
127 
128 #elif defined(__WATCOMC__) && __WATCOMC__ < 1200
129 # define COMPILER_ID "Watcom"
130  /* __WATCOMC__ = VVRR */
131 # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
132 # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
133 # if (__WATCOMC__ % 10) > 0
134 # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
135 # endif
136 
137 #elif defined(__WATCOMC__)
138 # define COMPILER_ID "OpenWatcom"
139  /* __WATCOMC__ = VVRP + 1100 */
140 # define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
141 # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
142 # if (__WATCOMC__ % 10) > 0
143 # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
144 # endif
145 
146 #elif defined(__SUNPRO_C)
147 # define COMPILER_ID "SunPro"
148 # if __SUNPRO_C >= 0x5100
149  /* __SUNPRO_C = 0xVRRP */
150 # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
151 # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
152 # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
153 # else
154  /* __SUNPRO_CC = 0xVRP */
155 # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
156 # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
157 # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
158 # endif
159 
160 #elif defined(__HP_cc)
161 # define COMPILER_ID "HP"
162  /* __HP_cc = VVRRPP */
163 # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
164 # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
165 # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
166 
167 #elif defined(__DECC)
168 # define COMPILER_ID "Compaq"
169  /* __DECC_VER = VVRRTPPPP */
170 # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
171 # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
172 # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
173 
174 #elif defined(__IBMC__) && defined(__COMPILER_VER__)
175 # define COMPILER_ID "zOS"
176  /* __IBMC__ = VRP */
177 # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
178 # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
179 # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
180 
181 #elif defined(__open_xl__) && defined(__clang__)
182 # define COMPILER_ID "IBMClang"
183 # define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
184 # define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
185 # define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
186 # define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
187 
188 
189 #elif defined(__ibmxl__) && defined(__clang__)
190 # define COMPILER_ID "XLClang"
191 # define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
192 # define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
193 # define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
194 # define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
195 
196 
197 #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
198 # define COMPILER_ID "XL"
199  /* __IBMC__ = VRP */
200 # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
201 # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
202 # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
203 
204 #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
205 # define COMPILER_ID "VisualAge"
206  /* __IBMC__ = VRP */
207 # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
208 # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
209 # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
210 
211 #elif defined(__NVCOMPILER)
212 # define COMPILER_ID "NVHPC"
213 # define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
214 # define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
215 # if defined(__NVCOMPILER_PATCHLEVEL__)
216 # define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
217 # endif
218 
219 #elif defined(__PGI)
220 # define COMPILER_ID "PGI"
221 # define COMPILER_VERSION_MAJOR DEC(__PGIC__)
222 # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
223 # if defined(__PGIC_PATCHLEVEL__)
224 # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
225 # endif
226 
227 #elif defined(_CRAYC)
228 # define COMPILER_ID "Cray"
229 # define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
230 # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
231 
232 #elif defined(__TI_COMPILER_VERSION__)
233 # define COMPILER_ID "TI"
234  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
235 # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
236 # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
237 # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
238 
239 #elif defined(__CLANG_FUJITSU)
240 # define COMPILER_ID "FujitsuClang"
241 # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
242 # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
243 # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
244 # define COMPILER_VERSION_INTERNAL_STR __clang_version__
245 
246 
247 #elif defined(__FUJITSU)
248 # define COMPILER_ID "Fujitsu"
249 # if defined(__FCC_version__)
250 # define COMPILER_VERSION __FCC_version__
251 # elif defined(__FCC_major__)
252 # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
253 # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
254 # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
255 # endif
256 # if defined(__fcc_version)
257 # define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
258 # elif defined(__FCC_VERSION)
259 # define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
260 # endif
261 
262 
263 #elif defined(__ghs__)
264 # define COMPILER_ID "GHS"
265 /* __GHS_VERSION_NUMBER = VVVVRP */
266 # ifdef __GHS_VERSION_NUMBER
267 # define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
268 # define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
269 # define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
270 # endif
271 
272 #elif defined(__TINYC__)
273 # define COMPILER_ID "TinyCC"
274 
275 #elif defined(__BCC__)
276 # define COMPILER_ID "Bruce"
277 
278 #elif defined(__SCO_VERSION__)
279 # define COMPILER_ID "SCO"
280 
281 #elif defined(__ARMCC_VERSION) && !defined(__clang__)
282 # define COMPILER_ID "ARMCC"
283 #if __ARMCC_VERSION >= 1000000
284  /* __ARMCC_VERSION = VRRPPPP */
285  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
286  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
287  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
288 #else
289  /* __ARMCC_VERSION = VRPPPP */
290  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
291  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
292  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
293 #endif
294 
295 
296 #elif defined(__clang__) && defined(__apple_build_version__)
297 # define COMPILER_ID "AppleClang"
298 # if defined(_MSC_VER)
299 # define SIMULATE_ID "MSVC"
300 # endif
301 # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
302 # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
303 # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
304 # if defined(_MSC_VER)
305  /* _MSC_VER = VVRR */
306 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
307 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
308 # endif
309 # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
310 
311 #elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
312 # define COMPILER_ID "ARMClang"
313  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
314  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
315  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
316 # define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
317 
318 #elif defined(__clang__)
319 # define COMPILER_ID "Clang"
320 # if defined(_MSC_VER)
321 # define SIMULATE_ID "MSVC"
322 # endif
323 # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
324 # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
325 # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
326 # if defined(_MSC_VER)
327  /* _MSC_VER = VVRR */
328 # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
329 # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
330 # endif
331 
332 #elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
333 # define COMPILER_ID "LCC"
334 # define COMPILER_VERSION_MAJOR DEC(1)
335 # if defined(__LCC__)
336 # define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
337 # endif
338 # if defined(__LCC_MINOR__)
339 # define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
340 # endif
341 # if defined(__GNUC__) && defined(__GNUC_MINOR__)
342 # define SIMULATE_ID "GNU"
343 # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
344 # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
345 # if defined(__GNUC_PATCHLEVEL__)
346 # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
347 # endif
348 # endif
349 
350 #elif defined(__GNUC__)
351 # define COMPILER_ID "GNU"
352 # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
353 # if defined(__GNUC_MINOR__)
354 # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
355 # endif
356 # if defined(__GNUC_PATCHLEVEL__)
357 # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
358 # endif
359 
360 #elif defined(_MSC_VER)
361 # define COMPILER_ID "MSVC"
362  /* _MSC_VER = VVRR */
363 # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
364 # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
365 # if defined(_MSC_FULL_VER)
366 # if _MSC_VER >= 1400
367  /* _MSC_FULL_VER = VVRRPPPPP */
368 # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
369 # else
370  /* _MSC_FULL_VER = VVRRPPPP */
371 # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
372 # endif
373 # endif
374 # if defined(_MSC_BUILD)
375 # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
376 # endif
377 
378 #elif defined(_ADI_COMPILER)
379 # define COMPILER_ID "ADSP"
380 #if defined(__VERSIONNUM__)
381  /* __VERSIONNUM__ = 0xVVRRPPTT */
382 # define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
383 # define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
384 # define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
385 # define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
386 #endif
387 
388 #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
389 # define COMPILER_ID "IAR"
390 # if defined(__VER__) && defined(__ICCARM__)
391 # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
392 # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
393 # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
394 # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
395 # elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
396 # define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
397 # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
398 # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
399 # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
400 # endif
401 
402 #elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
403 # define COMPILER_ID "SDCC"
404 # if defined(__SDCC_VERSION_MAJOR)
405 # define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
406 # define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
407 # define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
408 # else
409  /* SDCC = VRP */
410 # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
411 # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
412 # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
413 # endif
414 
415 
416 /* These compilers are either not known or too old to define an
417  identification macro. Try to identify the platform and guess that
418  it is the native compiler. */
419 #elif defined(__hpux) || defined(__hpua)
420 # define COMPILER_ID "HP"
421 
422 #else /* unknown compiler */
423 # define COMPILER_ID ""
424 #endif
425 
426 /* Construct the string literal in pieces to prevent the source from
427  getting matched. Store it in a pointer rather than an array
428  because some compilers will just produce instructions to fill the
429  array rather than assigning a pointer to a static array. */
430 char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
431 #ifdef SIMULATE_ID
432 char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
433 #endif
434 
435 #ifdef __QNXNTO__
436 char const* qnxnto = "INFO" ":" "qnxnto[]";
437 #endif
438 
439 #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
440 char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
441 #endif
442 
443 #define STRINGIFY_HELPER(X) #X
444 #define STRINGIFY(X) STRINGIFY_HELPER(X)
445 
446 /* Identify known platforms by name. */
447 #if defined(__linux) || defined(__linux__) || defined(linux)
448 # define PLATFORM_ID "Linux"
449 
450 #elif defined(__MSYS__)
451 # define PLATFORM_ID "MSYS"
452 
453 #elif defined(__CYGWIN__)
454 # define PLATFORM_ID "Cygwin"
455 
456 #elif defined(__MINGW32__)
457 # define PLATFORM_ID "MinGW"
458 
459 #elif defined(__APPLE__)
460 # define PLATFORM_ID "Darwin"
461 
462 #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
463 # define PLATFORM_ID "Windows"
464 
465 #elif defined(__FreeBSD__) || defined(__FreeBSD)
466 # define PLATFORM_ID "FreeBSD"
467 
468 #elif defined(__NetBSD__) || defined(__NetBSD)
469 # define PLATFORM_ID "NetBSD"
470 
471 #elif defined(__OpenBSD__) || defined(__OPENBSD)
472 # define PLATFORM_ID "OpenBSD"
473 
474 #elif defined(__sun) || defined(sun)
475 # define PLATFORM_ID "SunOS"
476 
477 #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
478 # define PLATFORM_ID "AIX"
479 
480 #elif defined(__hpux) || defined(__hpux__)
481 # define PLATFORM_ID "HP-UX"
482 
483 #elif defined(__HAIKU__)
484 # define PLATFORM_ID "Haiku"
485 
486 #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
487 # define PLATFORM_ID "BeOS"
488 
489 #elif defined(__QNX__) || defined(__QNXNTO__)
490 # define PLATFORM_ID "QNX"
491 
492 #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
493 # define PLATFORM_ID "Tru64"
494 
495 #elif defined(__riscos) || defined(__riscos__)
496 # define PLATFORM_ID "RISCos"
497 
498 #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
499 # define PLATFORM_ID "SINIX"
500 
501 #elif defined(__UNIX_SV__)
502 # define PLATFORM_ID "UNIX_SV"
503 
504 #elif defined(__bsdos__)
505 # define PLATFORM_ID "BSDOS"
506 
507 #elif defined(_MPRAS) || defined(MPRAS)
508 # define PLATFORM_ID "MP-RAS"
509 
510 #elif defined(__osf) || defined(__osf__)
511 # define PLATFORM_ID "OSF1"
512 
513 #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
514 # define PLATFORM_ID "SCO_SV"
515 
516 #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
517 # define PLATFORM_ID "ULTRIX"
518 
519 #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
520 # define PLATFORM_ID "Xenix"
521 
522 #elif defined(__WATCOMC__)
523 # if defined(__LINUX__)
524 # define PLATFORM_ID "Linux"
525 
526 # elif defined(__DOS__)
527 # define PLATFORM_ID "DOS"
528 
529 # elif defined(__OS2__)
530 # define PLATFORM_ID "OS2"
531 
532 # elif defined(__WINDOWS__)
533 # define PLATFORM_ID "Windows3x"
534 
535 # elif defined(__VXWORKS__)
536 # define PLATFORM_ID "VxWorks"
537 
538 # else /* unknown platform */
539 # define PLATFORM_ID
540 # endif
541 
542 #elif defined(__INTEGRITY)
543 # if defined(INT_178B)
544 # define PLATFORM_ID "Integrity178"
545 
546 # else /* regular Integrity */
547 # define PLATFORM_ID "Integrity"
548 # endif
549 
550 # elif defined(_ADI_COMPILER)
551 # define PLATFORM_ID "ADSP"
552 
553 #else /* unknown platform */
554 # define PLATFORM_ID
555 
556 #endif
557 
558 /* For windows compilers MSVC and Intel we can determine
559  the architecture of the compiler being used. This is because
560  the compilers do not have flags that can change the architecture,
561  but rather depend on which compiler is being used
562 */
563 #if defined(_WIN32) && defined(_MSC_VER)
564 # if defined(_M_IA64)
565 # define ARCHITECTURE_ID "IA64"
566 
567 # elif defined(_M_ARM64EC)
568 # define ARCHITECTURE_ID "ARM64EC"
569 
570 # elif defined(_M_X64) || defined(_M_AMD64)
571 # define ARCHITECTURE_ID "x64"
572 
573 # elif defined(_M_IX86)
574 # define ARCHITECTURE_ID "X86"
575 
576 # elif defined(_M_ARM64)
577 # define ARCHITECTURE_ID "ARM64"
578 
579 # elif defined(_M_ARM)
580 # if _M_ARM == 4
581 # define ARCHITECTURE_ID "ARMV4I"
582 # elif _M_ARM == 5
583 # define ARCHITECTURE_ID "ARMV5I"
584 # else
585 # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
586 # endif
587 
588 # elif defined(_M_MIPS)
589 # define ARCHITECTURE_ID "MIPS"
590 
591 # elif defined(_M_SH)
592 # define ARCHITECTURE_ID "SHx"
593 
594 # else /* unknown architecture */
595 # define ARCHITECTURE_ID ""
596 # endif
597 
598 #elif defined(__WATCOMC__)
599 # if defined(_M_I86)
600 # define ARCHITECTURE_ID "I86"
601 
602 # elif defined(_M_IX86)
603 # define ARCHITECTURE_ID "X86"
604 
605 # else /* unknown architecture */
606 # define ARCHITECTURE_ID ""
607 # endif
608 
609 #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
610 # if defined(__ICCARM__)
611 # define ARCHITECTURE_ID "ARM"
612 
613 # elif defined(__ICCRX__)
614 # define ARCHITECTURE_ID "RX"
615 
616 # elif defined(__ICCRH850__)
617 # define ARCHITECTURE_ID "RH850"
618 
619 # elif defined(__ICCRL78__)
620 # define ARCHITECTURE_ID "RL78"
621 
622 # elif defined(__ICCRISCV__)
623 # define ARCHITECTURE_ID "RISCV"
624 
625 # elif defined(__ICCAVR__)
626 # define ARCHITECTURE_ID "AVR"
627 
628 # elif defined(__ICC430__)
629 # define ARCHITECTURE_ID "MSP430"
630 
631 # elif defined(__ICCV850__)
632 # define ARCHITECTURE_ID "V850"
633 
634 # elif defined(__ICC8051__)
635 # define ARCHITECTURE_ID "8051"
636 
637 # elif defined(__ICCSTM8__)
638 # define ARCHITECTURE_ID "STM8"
639 
640 # else /* unknown architecture */
641 # define ARCHITECTURE_ID ""
642 # endif
643 
644 #elif defined(__ghs__)
645 # if defined(__PPC64__)
646 # define ARCHITECTURE_ID "PPC64"
647 
648 # elif defined(__ppc__)
649 # define ARCHITECTURE_ID "PPC"
650 
651 # elif defined(__ARM__)
652 # define ARCHITECTURE_ID "ARM"
653 
654 # elif defined(__x86_64__)
655 # define ARCHITECTURE_ID "x64"
656 
657 # elif defined(__i386__)
658 # define ARCHITECTURE_ID "X86"
659 
660 # else /* unknown architecture */
661 # define ARCHITECTURE_ID ""
662 # endif
663 
664 #elif defined(__TI_COMPILER_VERSION__)
665 # if defined(__TI_ARM__)
666 # define ARCHITECTURE_ID "ARM"
667 
668 # elif defined(__MSP430__)
669 # define ARCHITECTURE_ID "MSP430"
670 
671 # elif defined(__TMS320C28XX__)
672 # define ARCHITECTURE_ID "TMS320C28x"
673 
674 # elif defined(__TMS320C6X__) || defined(_TMS320C6X)
675 # define ARCHITECTURE_ID "TMS320C6x"
676 
677 # else /* unknown architecture */
678 # define ARCHITECTURE_ID ""
679 # endif
680 
681 # elif defined(__ADSPSHARC__)
682 # define ARCHITECTURE_ID "SHARC"
683 
684 # elif defined(__ADSPBLACKFIN__)
685 # define ARCHITECTURE_ID "Blackfin"
686 
687 #else
688 # define ARCHITECTURE_ID
689 #endif
690 
691 /* Convert integer to decimal digit literals. */
692 #define DEC(n) \
693  ('0' + (((n) / 10000000)%10)), \
694  ('0' + (((n) / 1000000)%10)), \
695  ('0' + (((n) / 100000)%10)), \
696  ('0' + (((n) / 10000)%10)), \
697  ('0' + (((n) / 1000)%10)), \
698  ('0' + (((n) / 100)%10)), \
699  ('0' + (((n) / 10)%10)), \
700  ('0' + ((n) % 10))
701 
702 /* Convert integer to hex digit literals. */
703 #define HEX(n) \
704  ('0' + ((n)>>28 & 0xF)), \
705  ('0' + ((n)>>24 & 0xF)), \
706  ('0' + ((n)>>20 & 0xF)), \
707  ('0' + ((n)>>16 & 0xF)), \
708  ('0' + ((n)>>12 & 0xF)), \
709  ('0' + ((n)>>8 & 0xF)), \
710  ('0' + ((n)>>4 & 0xF)), \
711  ('0' + ((n) & 0xF))
712 
713 /* Construct a string literal encoding the version number. */
714 #ifdef COMPILER_VERSION
715 char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
716 
717 /* Construct a string literal encoding the version number components. */
718 #elif defined(COMPILER_VERSION_MAJOR)
719 char const info_version[] = {
720  'I', 'N', 'F', 'O', ':',
721  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
722  COMPILER_VERSION_MAJOR,
723 # ifdef COMPILER_VERSION_MINOR
724  '.', COMPILER_VERSION_MINOR,
725 # ifdef COMPILER_VERSION_PATCH
726  '.', COMPILER_VERSION_PATCH,
727 # ifdef COMPILER_VERSION_TWEAK
728  '.', COMPILER_VERSION_TWEAK,
729 # endif
730 # endif
731 # endif
732  ']','\0'};
733 #endif
734 
735 /* Construct a string literal encoding the internal version number. */
736 #ifdef COMPILER_VERSION_INTERNAL
737 char const info_version_internal[] = {
738  'I', 'N', 'F', 'O', ':',
739  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
740  'i','n','t','e','r','n','a','l','[',
741  COMPILER_VERSION_INTERNAL,']','\0'};
742 #elif defined(COMPILER_VERSION_INTERNAL_STR)
743 char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
744 #endif
745 
746 /* Construct a string literal encoding the version number components. */
747 #ifdef SIMULATE_VERSION_MAJOR
748 char const info_simulate_version[] = {
749  'I', 'N', 'F', 'O', ':',
750  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
751  SIMULATE_VERSION_MAJOR,
752 # ifdef SIMULATE_VERSION_MINOR
753  '.', SIMULATE_VERSION_MINOR,
754 # ifdef SIMULATE_VERSION_PATCH
755  '.', SIMULATE_VERSION_PATCH,
756 # ifdef SIMULATE_VERSION_TWEAK
757  '.', SIMULATE_VERSION_TWEAK,
758 # endif
759 # endif
760 # endif
761  ']','\0'};
762 #endif
763 
764 /* Construct the string literal in pieces to prevent the source from
765  getting matched. Store it in a pointer rather than an array
766  because some compilers will just produce instructions to fill the
767  array rather than assigning a pointer to a static array. */
768 char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
769 char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
770 
771 
772 
773 #if !defined(__STDC__) && !defined(__clang__)
774 # if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
775 # define C_VERSION "90"
776 # else
777 # define C_VERSION
778 # endif
779 #elif __STDC_VERSION__ > 201710L
780 # define C_VERSION "23"
781 #elif __STDC_VERSION__ >= 201710L
782 # define C_VERSION "17"
783 #elif __STDC_VERSION__ >= 201000L
784 # define C_VERSION "11"
785 #elif __STDC_VERSION__ >= 199901L
786 # define C_VERSION "99"
787 #else
788 # define C_VERSION "90"
789 #endif
791  "INFO" ":" "standard_default[" C_VERSION "]";
792 
793 const char* info_language_extensions_default = "INFO" ":" "extensions_default["
794 #if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
795  defined(__TI_COMPILER_VERSION__)) && \
796  !defined(__STRICT_ANSI__)
797  "ON"
798 #else
799  "OFF"
800 #endif
801 "]";
802 
803 /*--------------------------------------------------------------------------*/
804 
805 #ifdef ID_VOID_MAIN
806 void main() {}
807 #else
808 # if defined(__CLASSIC_C__)
809 int main(argc, argv) int argc; char *argv[];
810 # else
811 int main(int argc, char* argv[])
812 # endif
813 {
814  int require = 0;
815  require += info_compiler[argc];
816  require += info_platform[argc];
817  require += info_arch[argc];
818 #ifdef COMPILER_VERSION_MAJOR
819  require += info_version[argc];
820 #endif
821 #ifdef COMPILER_VERSION_INTERNAL
822  require += info_version_internal[argc];
823 #endif
824 #ifdef SIMULATE_ID
825  require += info_simulate[argc];
826 #endif
827 #ifdef SIMULATE_VERSION_MAJOR
828  require += info_simulate_version[argc];
829 #endif
830 #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
831  require += info_cray[argc];
832 #endif
833  require += info_language_standard_default[argc];
834  require += info_language_extensions_default[argc];
835  (void)argv;
836  return require;
837 }
838 #endif
int main(int argc, char *argv[])
const char * info_language_extensions_default
char const * info_platform
const char * info_language_standard_default
char const * info_compiler
char const * info_arch
#define COMPILER_ID
#define ARCHITECTURE_ID
#define C_VERSION
#define PLATFORM_ID
static static fork const void static count static fd const char const char static newpath char char argv
Definition: sflib.h:40