Gammu internals  1.38.0
3.3.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 "]"
 

Macro Definition Documentation

§ ARCHITECTURE_ID

#define ARCHITECTURE_ID   ""

Definition at line 414 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

§ COMPILER_ID

#define COMPILER_ID   ""

Definition at line 251 of file 3.3.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 418 of file 3.3.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 429 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

§ PLATFORM_ID

#define PLATFORM_ID   ""

Definition at line 364 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

§ STRINGIFY

#define STRINGIFY (   X)    STRINGIFY_HELPER(X)

Definition at line 268 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

§ STRINGIFY_HELPER

#define STRINGIFY_HELPER (   X)    #X

Definition at line 267 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

Function Documentation

§ main()

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

Definition at line 490 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

References info_arch, info_compiler, and info_platform.

491 {
492  int require = 0;
493  require += info_compiler[argc];
494  require += info_platform[argc];
495  require += info_arch[argc];
496 #ifdef COMPILER_VERSION_MAJOR
497  require += info_version[argc];
498 #endif
499 #ifdef SIMULATE_ID
500  require += info_simulate[argc];
501 #endif
502 #ifdef SIMULATE_VERSION_MAJOR
503  require += info_simulate_version[argc];
504 #endif
505  (void)argv;
506  return require;
507 }
char const * info_compiler
char const * info_arch
char const * info_platform

Variable Documentation

§ info_arch

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

Definition at line 480 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_compiler

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

Definition at line 258 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_platform

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

Definition at line 479 of file 3.3.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().