CMakeFortranCompilerId.F.in 4.1 KB

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