2007-04-28 17:35:01 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# error "A C++ compiler has been selected for C."
|
|
|
|
#endif
|
|
|
|
|
2008-02-26 02:47:19 +03:00
|
|
|
#if defined(__18CXX)
|
|
|
|
# define ID_VOID_MAIN
|
|
|
|
#endif
|
2007-04-28 17:35:01 +04:00
|
|
|
|
|
|
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "Intel"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__BORLANDC__)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "Borland"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__WATCOMC__)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "Watcom"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__SUNPRO_C)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "SunPro"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__HP_cc)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "HP"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__DECC)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "Compaq"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__IBMC__)
|
2009-08-07 18:13:07 +04:00
|
|
|
# if defined(__COMPILER_VER__)
|
|
|
|
# define COMPILER_ID "zOS"
|
|
|
|
# elif __IBMC__ >= 800
|
|
|
|
# define COMPILER_ID "XL"
|
|
|
|
# else
|
|
|
|
# define COMPILER_ID "VisualAge"
|
|
|
|
# endif
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-09-17 23:55:17 +04:00
|
|
|
#elif defined(__PGI)
|
|
|
|
# define COMPILER_ID "PGI"
|
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__GNUC__)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "GNU"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(_MSC_VER)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "MSVC"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-07-12 21:41:00 +04:00
|
|
|
#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
2008-02-25 17:23:14 +03:00
|
|
|
/* Analog Devices C++ compiler for Blackfin, TigerSHARC and
|
2007-07-12 21:41:00 +04:00
|
|
|
SHARC (21000) DSPs */
|
|
|
|
# define COMPILER_ID "ADSP"
|
|
|
|
|
2007-05-24 17:35:24 +04:00
|
|
|
/* IAR Systems compiler for embedded systems.
|
|
|
|
http://www.iar.com
|
2007-06-05 18:28:43 +04:00
|
|
|
Not supported yet by CMake
|
2007-05-24 16:33:05 +04:00
|
|
|
#elif defined(__IAR_SYSTEMS_ICC__)
|
2007-06-05 18:28:43 +04:00
|
|
|
# define COMPILER_ID "IAR" */
|
2007-05-24 16:33:05 +04:00
|
|
|
|
2008-02-25 17:23:14 +03:00
|
|
|
/* sdcc, the small devices C compiler for embedded systems,
|
2007-06-26 21:19:46 +04:00
|
|
|
http://sdcc.sourceforge.net */
|
2007-05-24 17:35:24 +04:00
|
|
|
#elif defined(SDCC)
|
2007-06-26 21:19:46 +04:00
|
|
|
# define COMPILER_ID "SDCC"
|
2007-05-24 17:35:24 +04:00
|
|
|
|
2009-07-14 23:17:21 +04:00
|
|
|
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "MIPSpro"
|
2007-04-28 17:35:01 +04:00
|
|
|
|
|
|
|
/* 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)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "MIPSpro"
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#elif defined(__hpux) || defined(__hpua)
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID "HP"
|
2007-04-28 17:35:01 +04:00
|
|
|
|
|
|
|
#else /* unknown compiler */
|
2007-05-23 19:00:54 +04:00
|
|
|
# define COMPILER_ID ""
|
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
#endif
|
2007-05-22 20:48:16 +04:00
|
|
|
|
2008-03-10 16:32:25 +03:00
|
|
|
/* 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* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
2007-04-28 17:35:01 +04:00
|
|
|
|
2008-02-25 17:23:14 +03:00
|
|
|
@CMAKE_C_COMPILER_ID_PLATFORM_CONTENT@
|
2008-08-07 17:09:45 +04:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#ifdef ID_VOID_MAIN
|
|
|
|
void main() {}
|
|
|
|
#else
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int require = 0;
|
|
|
|
require += info_compiler[argc];
|
|
|
|
require += info_platform[argc];
|
2009-11-20 05:58:42 +03:00
|
|
|
require += info_arch[argc];
|
2008-08-07 17:09:45 +04:00
|
|
|
(void)argv;
|
|
|
|
return require;
|
|
|
|
}
|
|
|
|
#endif
|