v0.15.0
Loading...
Searching...
No Matches
CMakeCCompilerId.c File Reference

Go to the source code of this file.

Macros

#define COMPILER_ID   ""
 
#define STRINGIFY_HELPER(X)
 
#define STRINGIFY(X)
 
#define PLATFORM_ID   ""
 
#define ARCHITECTURE_ID   ""
 
#define DEC(n)
 
#define HEX(n)
 

Functions

int main (int argc, char *argv[])
 

Variables

char const * info_compiler = "INFO" ":" "compiler[" "" "]"
 
char const * info_platform = "INFO" ":" "platform[" "" "]"
 
char const * info_arch = "INFO" ":" "arch[" "" "]"
 
const char * info_language_dialect_default
 

Macro Definition Documentation

◆ ARCHITECTURE_ID

#define ARCHITECTURE_ID   ""

Definition at line 416 of file CMakeCCompilerId.c.

◆ COMPILER_ID

#define COMPILER_ID   ""

Definition at line 253 of file CMakeCCompilerId.c.

◆ DEC

#define DEC ( n)
Value:
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
const double n
refractive index of diffusive medium

Definition at line 420 of file CMakeCCompilerId.c.

420#define DEC(n) \
421 ('0' + (((n) / 10000000)%10)), \
422 ('0' + (((n) / 1000000)%10)), \
423 ('0' + (((n) / 100000)%10)), \
424 ('0' + (((n) / 10000)%10)), \
425 ('0' + (((n) / 1000)%10)), \
426 ('0' + (((n) / 100)%10)), \
427 ('0' + (((n) / 10)%10)), \
428 ('0' + ((n) % 10))

◆ HEX

#define HEX ( n)
Value:
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))

Definition at line 431 of file CMakeCCompilerId.c.

431#define HEX(n) \
432 ('0' + ((n)>>28 & 0xF)), \
433 ('0' + ((n)>>24 & 0xF)), \
434 ('0' + ((n)>>20 & 0xF)), \
435 ('0' + ((n)>>16 & 0xF)), \
436 ('0' + ((n)>>12 & 0xF)), \
437 ('0' + ((n)>>8 & 0xF)), \
438 ('0' + ((n)>>4 & 0xF)), \
439 ('0' + ((n) & 0xF))

◆ PLATFORM_ID

#define PLATFORM_ID   ""

Definition at line 366 of file CMakeCCompilerId.c.

◆ STRINGIFY

#define STRINGIFY ( X)
Value:
#define STRINGIFY_HELPER(X)

Definition at line 270 of file CMakeCCompilerId.c.

◆ STRINGIFY_HELPER

#define STRINGIFY_HELPER ( X)
Value:
#X

Definition at line 269 of file CMakeCCompilerId.c.

Function Documentation

◆ main()

int main ( int argc,
char * argv[] )

Definition at line 503 of file CMakeCCompilerId.c.

504{
505 int require = 0;
506 require += info_compiler[argc];
507 require += info_platform[argc];
508 require += info_arch[argc];
509#ifdef COMPILER_VERSION_MAJOR
510 require += info_version[argc];
511#endif
512#ifdef SIMULATE_ID
513 require += info_simulate[argc];
514#endif
515#ifdef SIMULATE_VERSION_MAJOR
516 require += info_simulate_version[argc];
517#endif
518 require += info_language_dialect_default[argc];
519 (void)argv;
520 return require;
521}
const char * info_language_dialect_default
char const * info_platform
char const * info_compiler
char const * info_arch

Variable Documentation

◆ info_arch

char const* info_arch = "INFO" ":" "arch[" "" "]"

Definition at line 482 of file CMakeCCompilerId.c.

◆ info_compiler

char const* info_compiler = "INFO" ":" "compiler[" "" "]"

Definition at line 260 of file CMakeCCompilerId.c.

◆ info_language_dialect_default

const char* info_language_dialect_default
Initial value:
= "INFO" ":" "dialect_default["
"90"
"]"

Definition at line 487 of file CMakeCCompilerId.c.

◆ info_platform

char const* info_platform = "INFO" ":" "platform[" "" "]"

Definition at line 481 of file CMakeCCompilerId.c.