summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macgetcompiler.c
blob: 67399d8fcda6e6f913833c6fcff038f143d9af56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Return a string representing the compiler name */

#ifdef THINK_C
#define COMPILER " [THINK C]"
#endif

#ifdef __MWERKS__
#ifdef __powerc
#define COMPILER " [CW PPC]"
#else
#ifdef __CFM68K__
#define COMPILER " [CW CFM68K]"
#else
#define COMPILER " [CW 68K]"
#endif
#endif
#endif

#ifdef MPW
#ifdef __SC__
#define COMPILER " [Symantec MPW]"
#else
#define COMPILER " [Apple MPW]"
#endif
#endif

char *
getcompiler()
{
	return COMPILER;
}