Hoyt's FORK of DemoIccMAX 2.1.17.hoyt
Documentation for Hoyt's FORK of DemoIccMAX
Loading...
Searching...
No Matches
CMakeCCompilerId.c File Reference

Go to the source code of this file.

Macros

#define __has_include(x)   0
 
#define ARCHITECTURE_ID
 
#define C_VERSION
 
#define COMPILER_ID   ""
 
#define DEC(n)
 
#define HEX(n)
 
#define PLATFORM_ID
 
#define STRINGIFY(X)   STRINGIFY_HELPER(X)
 
#define STRINGIFY_HELPER(X)   #X
 

Functions

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

Variables

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

Macro Definition Documentation

◆ __has_include

#define __has_include ( x)    0

Definition at line 17 of file CMakeCCompilerId.c.

◆ ARCHITECTURE_ID

#define ARCHITECTURE_ID

Definition at line 745 of file CMakeCCompilerId.c.

◆ C_VERSION

#define C_VERSION

Definition at line 834 of file CMakeCCompilerId.c.

◆ COMPILER_ID

#define COMPILER_ID   ""

Definition at line 448 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))

Definition at line 749 of file CMakeCCompilerId.c.

749#define DEC(n) \
750 ('0' + (((n) / 10000000)%10)), \
751 ('0' + (((n) / 1000000)%10)), \
752 ('0' + (((n) / 100000)%10)), \
753 ('0' + (((n) / 10000)%10)), \
754 ('0' + (((n) / 1000)%10)), \
755 ('0' + (((n) / 100)%10)), \
756 ('0' + (((n) / 10)%10)), \
757 ('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 760 of file CMakeCCompilerId.c.

760#define HEX(n) \
761 ('0' + ((n)>>28 & 0xF)), \
762 ('0' + ((n)>>24 & 0xF)), \
763 ('0' + ((n)>>20 & 0xF)), \
764 ('0' + ((n)>>16 & 0xF)), \
765 ('0' + ((n)>>12 & 0xF)), \
766 ('0' + ((n)>>8 & 0xF)), \
767 ('0' + ((n)>>4 & 0xF)), \
768 ('0' + ((n) & 0xF))

◆ PLATFORM_ID

#define PLATFORM_ID

Definition at line 579 of file CMakeCCompilerId.c.

◆ STRINGIFY

#define STRINGIFY ( X)    STRINGIFY_HELPER(X)

Definition at line 469 of file CMakeCCompilerId.c.

◆ STRINGIFY_HELPER

#define STRINGIFY_HELPER ( X)    #X

Definition at line 468 of file CMakeCCompilerId.c.

Function Documentation

◆ main()

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

Definition at line 868 of file CMakeCCompilerId.c.

870{
871 int require = 0;
872 require += info_compiler[argc];
873 require += info_platform[argc];
874 require += info_arch[argc];
875#ifdef COMPILER_VERSION_MAJOR
876 require += info_version[argc];
877#endif
878#ifdef COMPILER_VERSION_INTERNAL
879 require += info_version_internal[argc];
880#endif
881#ifdef SIMULATE_ID
882 require += info_simulate[argc];
883#endif
884#ifdef SIMULATE_VERSION_MAJOR
885 require += info_simulate_version[argc];
886#endif
887#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
888 require += info_cray[argc];
889#endif
890 require += info_language_standard_default[argc];
891 require += info_language_extensions_default[argc];
892 (void)argv;
893 return require;
894}
const char * info_language_extensions_default
char const * info_platform
const char * info_language_standard_default
char const * info_compiler
char const * info_arch

References info_arch, info_compiler, info_language_extensions_default, info_language_standard_default, and info_platform.

Variable Documentation

◆ info_arch

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

Definition at line 826 of file CMakeCCompilerId.c.

Referenced by main().

◆ info_compiler

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

Definition at line 455 of file CMakeCCompilerId.c.

Referenced by main().

◆ info_language_extensions_default

const char* info_language_extensions_default
Initial value:
= "INFO" ":" "extensions_default["
"OFF"
"]"

Definition at line 850 of file CMakeCCompilerId.c.

Referenced by main().

◆ info_language_standard_default

const char* info_language_standard_default
Initial value:
=
"INFO" ":" "standard_default[" "]"

Definition at line 847 of file CMakeCCompilerId.c.

Referenced by main().

◆ info_platform

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

Definition at line 825 of file CMakeCCompilerId.c.

Referenced by main().