TZIVI-254: IVI needs a newer version of cmake
[profile/ivi/cmake.git] / Modules / CMakeFortranCompilerId.F.in
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
50 #if 0
51 ! Identify the platform
52 #endif
53 #if defined(__linux) || defined(__linux__) || defined(linux)
54         PRINT *, 'INFO:platform[Linux]'
55 #elif defined(__CYGWIN__)
56         PRINT *, 'INFO:platform[Cygwin]'
57 #elif defined(__MINGW32__)
58         PRINT *, 'INFO:platform[MinGW]'
59 #elif defined(__APPLE__)
60         PRINT *, 'INFO:platform[Darwin]'
61 #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
62         PRINT *, 'INFO:platform[Windows]'
63 #elif defined(__FreeBSD__) || defined(__FreeBSD)
64         PRINT *, 'INFO:platform[FreeBSD]'
65 #elif defined(__NetBSD__) || defined(__NetBSD)
66         PRINT *, 'INFO:platform[NetBSD]'
67 #elif defined(__OpenBSD__) || defined(__OPENBSD)
68         PRINT *, 'INFO:platform[OpenBSD]'
69 #elif defined(__sun) || defined(sun)
70         PRINT *, 'INFO:platform[SunOS]'
71 #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
72         PRINT *, 'INFO:platform[AIX]'
73 #elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
74         PRINT *, 'INFO:platform[IRIX]'
75 #elif defined(__hpux) || defined(__hpux__)
76         PRINT *, 'INFO:platform[HP-UX]'
77 #elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
78         PRINT *, 'INFO:platform[Haiku]'
79 #       if 0
80 !       Haiku also defines __BEOS__ so we must
81 !       put it prior to the check for __BEOS__
82 #       endif
83 #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
84         PRINT *, 'INFO:platform[BeOS]'
85 #elif defined(__QNX__) || defined(__QNXNTO__)
86         PRINT *, 'INFO:platform[QNX]'
87 #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
88         PRINT *, 'INFO:platform[Tru64]'
89 #elif defined(__riscos) || defined(__riscos__)
90         PRINT *, 'INFO:platform[RISCos]'
91 #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
92         PRINT *, 'INFO:platform[SINIX]'
93 #elif defined(__UNIX_SV__)
94         PRINT *, 'INFO:platform[UNIX_SV]'
95 #elif defined(__bsdos__)
96         PRINT *, 'INFO:platform[BSDOS]'
97 #elif defined(_MPRAS) || defined(MPRAS)
98         PRINT *, 'INFO:platform[MP-RAS]'
99 #elif defined(__osf) || defined(__osf__)
100         PRINT *, 'INFO:platform[OSF1]'
101 #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
102         PRINT *, 'INFO:platform[SCO_SV]'
103 #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
104         PRINT *, 'INFO:platform[ULTRIX]'
105 #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
106         PRINT *, 'INFO:platform[Xenix]'
107 #elif 1
108 #       if 0
109 !       The above 'elif 1' instead of 'else' is to work around a bug in the
110 !       SGI preprocessor which produces both the __sgi and else blocks.
111 #       endif
112         PRINT *, 'INFO:platform[]'
113 #endif
114 #if defined(_WIN32) && (defined(__INTEL_COMPILER) || defined(__ICC))
115 # if defined(_M_IA64)
116         PRINT *, 'INFO:arch[IA64]'
117 # elif defined(_M_X64) || defined(_M_AMD64)
118         PRINT *, 'INFO:arch[x64]'
119 # elif defined(_M_IX86)
120         PRINT *, 'INFO:arch[X86]'
121 # endif
122 #endif
123       END