CMakeCXXCompilerId.cpp.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* This source file must have a .cpp extension so that all C++ compilers
  2. recognize the extension without flags. Borland does not know .cxx for
  3. example. */
  4. #ifndef __cplusplus
  5. # error "A C compiler has been selected for C++."
  6. #endif
  7. @CMAKE_CXX_COMPILER_ID_CONTENT@
  8. /* Construct the string literal in pieces to prevent the source from
  9. getting matched. Store it in a pointer rather than an array
  10. because some compilers will just produce instructions to fill the
  11. array rather than assigning a pointer to a static array. */
  12. char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  13. #ifdef SIMULATE_ID
  14. char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
  15. #endif
  16. #ifdef __QNXNTO__
  17. char const* qnxnto = "INFO" ":" "qnxnto[]";
  18. #endif
  19. #if defined(__CRAYXE) || defined(__CRAYXC)
  20. char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
  21. #endif
  22. @CMAKE_CXX_COMPILER_ID_PLATFORM_CONTENT@
  23. @CMAKE_CXX_COMPILER_ID_ERROR_FOR_TEST@
  24. const char* info_language_dialect_default = "INFO" ":" "dialect_default["
  25. #if __cplusplus >= 201402L
  26. "14"
  27. #elif __cplusplus >= 201103L
  28. "11"
  29. #else
  30. "98"
  31. #endif
  32. "]";
  33. /*--------------------------------------------------------------------------*/
  34. int main(int argc, char* argv[])
  35. {
  36. int require = 0;
  37. require += info_compiler[argc];
  38. require += info_platform[argc];
  39. #ifdef COMPILER_VERSION_MAJOR
  40. require += info_version[argc];
  41. #endif
  42. #ifdef SIMULATE_ID
  43. require += info_simulate[argc];
  44. #endif
  45. #ifdef SIMULATE_VERSION_MAJOR
  46. require += info_simulate_version[argc];
  47. #endif
  48. #if defined(__CRAYXE) || defined(__CRAYXC)
  49. require += info_cray[argc];
  50. #endif
  51. require += info_language_dialect_default[argc];
  52. (void)argv;
  53. return require;
  54. }