| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* This source file must have a .cpp extension so that all C++ compilers
- recognize the extension without flags. Borland does not know .cxx for
- example. */
- #ifndef __cplusplus
- # error "A C compiler has been selected for C++."
- #endif
- #if defined(__COMO__)
- # define COMPILER_ID "Comeau"
- #elif defined(__INTEL_COMPILER) || defined(__ICC)
- # define COMPILER_ID "Intel"
- #elif defined(__clang__)
- # define COMPILER_ID "Clang"
- #elif defined(__BORLANDC__)
- # define COMPILER_ID "Borland"
- #elif defined(__WATCOMC__)
- # define COMPILER_ID "Watcom"
- #elif defined(__SUNPRO_CC)
- # define COMPILER_ID "SunPro"
- #elif defined(__HP_aCC)
- # define COMPILER_ID "HP"
- #elif defined(__DECCXX)
- # define COMPILER_ID "Compaq"
- #elif defined(__IBMCPP__)
- # if defined(__COMPILER_VER__)
- # define COMPILER_ID "zOS"
- # elif __IBMCPP__ >= 800
- # define COMPILER_ID "XL"
- # else
- # define COMPILER_ID "VisualAge"
- # endif
- #elif defined(__PGI)
- # define COMPILER_ID "PGI"
- #elif defined(__PATHSCALE__)
- # define COMPILER_ID "PathScale"
- #elif defined(_CRAYC)
- # define COMPILER_ID "Cray"
- #elif defined(__TI_COMPILER_VERSION__)
- # define COMPILER_ID "TI_DSP"
- #elif defined(__SCO_VERSION__)
- # define COMPILER_ID "SCO"
- #elif defined(__GNUC__)
- # define COMPILER_ID "GNU"
- # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
- # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
- # if defined(__GNUC_PATCHLEVEL__)
- # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
- # endif
- #elif defined(_MSC_VER)
- # define COMPILER_ID "MSVC"
- # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
- # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
- # if defined(_MSC_FULL_VER)
- # if _MSC_VER >= 1400
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
- # else
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
- # endif
- # endif
- # if defined(_MSC_BUILD)
- # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
- # endif
- #elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
- /* Analog Devices C++ compiler for Blackfin, TigerSHARC and
- SHARC (21000) DSPs */
- # define COMPILER_ID "ADSP"
- #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
- # define COMPILER_ID "MIPSpro"
- /* This compiler is either not known or is too old to define an
- identification macro. Try to identify the platform and guess that
- it is the native compiler. */
- #elif defined(__sgi)
- # define COMPILER_ID "MIPSpro"
- #elif defined(__hpux) || defined(__hpua)
- # define COMPILER_ID "HP"
- #else /* unknown compiler */
- # define COMPILER_ID ""
- #endif
- /* Construct the string literal in pieces to prevent the source from
- getting matched. Store it in a pointer rather than an array
- because some compilers will just produce instructions to fill the
- array rather than assigning a pointer to a static array. */
- char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
- @CMAKE_CXX_COMPILER_ID_PLATFORM_CONTENT@
- /*--------------------------------------------------------------------------*/
- int main(int argc, char* argv[])
- {
- int require = 0;
- require += info_compiler[argc];
- require += info_platform[argc];
- #ifdef COMPILER_VERSION_MAJOR
- require += info_version[argc];
- #endif
- (void)argv;
- return require;
- }
|