CMakeFortranCompilerId.F.in 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. PROGRAM CMakeFortranCompilerId
  2. #if 0
  3. ! Identify the compiler
  4. #endif
  5. #if defined(__INTEL_COMPILER) || defined(__ICC)
  6. PRINT *, 'INFO:compiler[Intel]'
  7. #elif defined(__SUNPRO_F90) || defined(__SUNPRO_F95)
  8. PRINT *, 'INFO:compiler[SunPro]'
  9. #elif defined(_CRAYFTN)
  10. PRINT *, 'INFO:compiler[Cray]'
  11. #elif defined(__G95__)
  12. PRINT *, 'INFO:compiler[G95]'
  13. #elif defined(__PATHSCALE__)
  14. PRINT *, 'INFO:compiler[PathScale]'
  15. #elif defined(__ABSOFT__)
  16. PRINT *, 'INFO:compiler[Absoft]'
  17. #elif defined(__GNUC__)
  18. PRINT *, 'INFO:compiler[GNU]'
  19. #elif defined(__IBMC__)
  20. # if defined(__COMPILER_VER__)
  21. PRINT *, 'INFO:compiler[zOS]'
  22. # elif __IBMC__ >= 800
  23. PRINT *, 'INFO:compiler[XL]'
  24. # else
  25. PRINT *, 'INFO:compiler[VisualAge]'
  26. # endif
  27. #elif defined(__PGI)
  28. PRINT *, 'INFO:compiler[PGI]'
  29. #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  30. PRINT *, 'INFO:compiler[MIPSpro]'
  31. # if 0
  32. ! This compiler is either not known or is too old to define an
  33. ! identification macro. Try to identify the platform and guess that
  34. ! it is the native compiler.
  35. # endif
  36. #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  37. PRINT *, 'INFO:compiler[VisualAge]'
  38. #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  39. PRINT *, 'INFO:compiler[MIPSpro]'
  40. #elif defined(__hpux) || defined(__hpux__)
  41. PRINT *, 'INFO:compiler[HP]'
  42. #elif 1
  43. # if 0
  44. ! The above 'elif 1' instead of 'else' is to work around a bug in the
  45. ! SGI preprocessor which produces both the __sgi and else blocks.
  46. # endif
  47. PRINT *, 'INFO:compiler[]'
  48. #endif
  49. #if 0
  50. ! Identify the platform
  51. #endif
  52. #if defined(__linux) || defined(__linux__) || defined(linux)
  53. PRINT *, 'INFO:platform[Linux]'
  54. #elif defined(__CYGWIN__)
  55. PRINT *, 'INFO:platform[Cygwin]'
  56. #elif defined(__MINGW32__)
  57. PRINT *, 'INFO:platform[MinGW]'
  58. #elif defined(__APPLE__)
  59. PRINT *, 'INFO:platform[Darwin]'
  60. #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  61. PRINT *, 'INFO:platform[Windows]'
  62. #elif defined(__FreeBSD__) || defined(__FreeBSD)
  63. PRINT *, 'INFO:platform[FreeBSD]'
  64. #elif defined(__NetBSD__) || defined(__NetBSD)
  65. PRINT *, 'INFO:platform[NetBSD]'
  66. #elif defined(__OpenBSD__) || defined(__OPENBSD)
  67. PRINT *, 'INFO:platform[OpenBSD]'
  68. #elif defined(__sun) || defined(sun)
  69. PRINT *, 'INFO:platform[SunOS]'
  70. #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  71. PRINT *, 'INFO:platform[AIX]'
  72. #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  73. PRINT *, 'INFO:platform[IRIX]'
  74. #elif defined(__hpux) || defined(__hpux__)
  75. PRINT *, 'INFO:platform[HP-UX]'
  76. #elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
  77. PRINT *, 'INFO:platform[Haiku]'
  78. # if 0
  79. ! Haiku also defines __BEOS__ so we must
  80. ! put it prior to the check for __BEOS__
  81. # endif
  82. #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  83. PRINT *, 'INFO:platform[BeOS]'
  84. #elif defined(__QNX__) || defined(__QNXNTO__)
  85. PRINT *, 'INFO:platform[QNX]'
  86. #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  87. PRINT *, 'INFO:platform[Tru64]'
  88. #elif defined(__riscos) || defined(__riscos__)
  89. PRINT *, 'INFO:platform[RISCos]'
  90. #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  91. PRINT *, 'INFO:platform[SINIX]'
  92. #elif defined(__UNIX_SV__)
  93. PRINT *, 'INFO:platform[UNIX_SV]'
  94. #elif defined(__bsdos__)
  95. PRINT *, 'INFO:platform[BSDOS]'
  96. #elif defined(_MPRAS) || defined(MPRAS)
  97. PRINT *, 'INFO:platform[MP-RAS]'
  98. #elif defined(__osf) || defined(__osf__)
  99. PRINT *, 'INFO:platform[OSF1]'
  100. #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  101. PRINT *, 'INFO:platform[SCO_SV]'
  102. #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  103. PRINT *, 'INFO:platform[ULTRIX]'
  104. #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  105. PRINT *, 'INFO:platform[Xenix]'
  106. #elif 1
  107. # if 0
  108. ! The above 'elif 1' instead of 'else' is to work around a bug in the
  109. ! SGI preprocessor which produces both the __sgi and else blocks.
  110. # endif
  111. PRINT *, 'INFO:platform[]'
  112. #endif
  113. #if defined(_WIN32) && (defined(__INTEL_COMPILER) || defined(__ICC))
  114. # if defined(_M_IA64)
  115. PRINT *, 'INFO:arch[IA64]'
  116. # elif defined(_M_X64) || defined(_M_AMD64)
  117. PRINT *, 'INFO:arch[x64]'
  118. # elif defined(_M_IX86)
  119. PRINT *, 'INFO:arch[X86]'
  120. # endif
  121. #endif
  122. END