summaryrefslogtreecommitdiff
path: root/source/LCM/include/c_compiler.h
blob: 90799b158a8a7a3e7caa78de9a91758e9e258bd6 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/******************************************************************************
*
* Copyright (C) ST-Ericsson SA 2011
* License terms: 3-clause BSD license
*
******************************************************************************/
#ifndef _C_COMPILER_H
#define _C_COMPILER_H

/*************************************************************************
*
*     HEADER SPECIFICATION
*
*     $Workfile: c_compiler.h $
*
**************************************************************************
*
* DESCRIPTION:
*
* This file contains macros that determines current compiler
*
*
**************************************************************************
*
* REVISION HISTORY:
*
* $Log: \LD_FuncBlocks_012\cnh160692_exec_pltf_srv_swbp\inc\c_compiler.h $
 *
 *    Version: ...\cnh160692_r1a_dev\3 12 Mar 2002 14:21 (GMT) QCSSTZI
 * rename p_compiler to c_compiler.
 *
 *    Version: ...\cnh160692_r1a_dev\2 10 Jan 2002 12:35 (GMT) QCSSTZI
 * Updated to reflect R4A013 on the old module (cnh1010024)
 *
 *    Version: ...\cnh1010024_r4a_dev\1 11 Sep 2001 07:34 (GMT) QCSPAAB
 * Merge to Valentina (R4)
 *
 *    Version: ...\cnh1010024\1 14 Nov 2000 15:30 (GMT) ECSJENE
 * Merge to start new dev-branch for the Mia project.
 *
 *    Version: ...\cnh1010024_r2a_dev\4 05 Oct 2000 06:25 (GMT) ECSSTMA
 * Macro to remove non_banked directive.
 *
 *    Version: ...\cnh1010024_r2a_dev\3 19 Sep 2000 12:38 (GMT) QCSLAIS
 * Compiler warnings work around.
 *
 *    Version: ...\cnh1010024_r2a_dev\2 22 May 2000 08:25 (GMT) ECSSTMA
 * Accept LINT as being one among the compilers.
 *
 *    Version: ...\cnh1010024_r2a_dev\1 16 May 2000 12:19 (GMT) QCSLAIS
 * Created file compiler.h which determines current compiler and target
*
**************************************************************************/

#if defined(__IAR_SYSTEMS_ICC) || defined(__IAR_SYSTEMS_ICC__)
/* COMPILER IS FROM IAR */
#if   ((__TID__ >> 8) & 0x7f) == 23
/* TARGET IS Z80 */
#define COMPILER_IAR_Z80
#elif ((__TID__ >> 8) & 0x7f) == 90
/* TARGET IS AVR */
#define COMPILER_IAR_AVR /* Preferred */
#define COMPILER_AVR
#define AT90S
#elif ((__TID__ >> 8) & 0x7f) == 0x4f
/* TARGET IS ARM */
#define COMPILER_IAR_ARM /* Preferred */
#define COMPILER_ARM
#define ARM
#else
#error Unknown IAR compiler
#endif
#elif defined(_WIN32)
/* TARGET IS Win32 */
#define COMPILER_MSDEV
#define __arm
#define __pcs
#define __no_init
#elif defined(__arm)
/* TARGET IS ARM */
#define COMPILER_ARM_ARM /* Preferred */
#define COMPILER_ARM
#define ARM
#elif defined(__GNUC__)
#ifdef __arm__
#define COMPILER_GCC_ARM
#elif defined(__linux__)
/* TARGET IS LINUX */
#define COMPILER_GCC
#endif
#elif defined(__IAR_SYSTEMS_ASM__)
#elif defined(_lint)
#else
#error Unknown compiler
#endif

/*
 * Some compiler bug work arounds.
 */

/*
 * Avoid ARM compiler error when comparing NULL with a pointer
 * by defining NULL as NULL pointer.
 */
#if defined(COMPILER_ARM_ARM) && !defined(NULL)
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif

/*
 * Some modules still use the unused banked prefix.
 */
#ifndef banked
#define banked
#endif

#ifndef non_banked
#define non_banked
#endif

#endif // _C_COMPILER_H