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

Go to the source code of this file.

Macros

#define COMPILER_ID   ""
 
#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 405 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

§ COMPILER_ID

#define COMPILER_ID   ""

Definition at line 251 of file 3.2.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 409 of file 3.2.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 420 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

§ PLATFORM_ID

#define PLATFORM_ID   ""

Definition at line 361 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

Function Documentation

§ main()

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

Definition at line 481 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

References info_arch, info_compiler, and info_platform.

482 {
483  int require = 0;
484  require += info_compiler[argc];
485  require += info_platform[argc];
486  require += info_arch[argc];
487 #ifdef COMPILER_VERSION_MAJOR
488  require += info_version[argc];
489 #endif
490 #ifdef SIMULATE_ID
491  require += info_simulate[argc];
492 #endif
493 #ifdef SIMULATE_VERSION_MAJOR
494  require += info_simulate_version[argc];
495 #endif
496  (void)argv;
497  return require;
498 }
char const * info_platform
char const * info_arch
char const * info_compiler

Variable Documentation

§ info_arch

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

Definition at line 471 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().

§ info_compiler

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

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

Referenced by main().

§ info_platform

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

Definition at line 470 of file 3.2.2/CompilerIdC/CMakeCCompilerId.c.

Referenced by main().