Gammu internals  1.38.0
3.5.2/CompilerIdC/CMakeCCompilerId.c File Reference

Go to the source code of this file.

Macros

#define COMPILER_ID   ""
 
#define STRINGIFY_HELPER(X)   #X
 
#define STRINGIFY(X)   STRINGIFY_HELPER(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[" COMPILER_ID "]"
 
char const * info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"
 
char const * info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"
 
const char * info_language_dialect_default
 

Macro Definition Documentation

§ ARCHITECTURE_ID

#define ARCHITECTURE_ID   ""

Definition at line 435 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

§ COMPILER_ID

#define COMPILER_ID   ""

Definition at line 268 of file 3.5.2/CompilerIdC/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))

Definition at line 439 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

§ 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 450 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

§ PLATFORM_ID

#define PLATFORM_ID   ""

Definition at line 385 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

§ STRINGIFY

#define STRINGIFY (   X)    STRINGIFY_HELPER(X)

Definition at line 289 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

§ STRINGIFY_HELPER

#define STRINGIFY_HELPER (   X)    #X

Definition at line 288 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

Function Documentation

§ main()

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

Definition at line 522 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

References info_arch, info_compiler, info_language_dialect_default, and info_platform.

523 {
524  int require = 0;
525  require += info_compiler[argc];
526  require += info_platform[argc];
527  require += info_arch[argc];
528 #ifdef COMPILER_VERSION_MAJOR
529  require += info_version[argc];
530 #endif
531 #ifdef SIMULATE_ID
532  require += info_simulate[argc];
533 #endif
534 #ifdef SIMULATE_VERSION_MAJOR
535  require += info_simulate_version[argc];
536 #endif
537 #if defined(__CRAYXE) || defined(__CRAYXC)
538  require += info_cray[argc];
539 #endif
540  require += info_language_dialect_default[argc];
541  (void)argv;
542  return require;
543 }
char const * info_compiler
char const * info_arch
char const * info_platform
const char * info_language_dialect_default

Variable Documentation

§ info_arch

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

Definition at line 501 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_compiler

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

Definition at line 275 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_language_dialect_default

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

Definition at line 506 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_platform

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

Definition at line 500 of file 3.5.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().