-
Notifications
You must be signed in to change notification settings - Fork 816
/
Copy pathplatform.h
70 lines (56 loc) · 2.62 KB
/
platform.h
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
/********************************************************************\
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, contact: *
* *
* Free Software Foundation Voice: +1-617-542-5942 *
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA [email protected] *
* *
\********************************************************************/
#ifndef GNC_PLATFORM_H
#define GNC_PLATFORM_H
#include <config.h>
/* PLATFORM handles OS, operating environment, graphics API, and CPU */
#define PLATFORM(GNC_FEATURE) (defined( GNC_PLATFORM_##GNC_FEATURE ) && GNC_PLATFORM_##GNC_FEATURE)
#define COMPILER(GNC_FEATURE) (defined( GNC_COMPILER_##GNC_FEATURE ) && GNC_COMPILER_##GNC_FEATURE)
#define HAVE(GNC_FEATURE) (defined( HAVE_##GNC_FEATURE ) && HAVE_##GNC_FEATURE)
#define USE(GNC_FEATURE) (defined( GNC_USE_##GNC_FEATURE ) && GNC_USE_##GNC_FEATURE)
#define ENABLE(GNC_FEATURE) (defined( ENABLE_##GNC_FEATURE ) && ENABLE_##GNC_FEATURE)
/* Operating systems - low-level dependencies */
/* Operating environments */
/* Graphics engines */
/* CPU */
/* Compiler */
/* COMPILER(MSVC) */
#if defined(_MSC_VER)
#define GNC_COMPILER_MSVC 1
#if _MSC_VER < 1400
#define GNC_COMPILER_MSVC7 1
#endif
#endif
/* COMPILER(RVCT) */
#if defined(__CC_ARM) || defined(__ARMCC__)
#define GNC_COMPILER_RVCT 1
#endif
/* COMPILER(GCC) */
/* --gnu option of the RVCT compiler also defines __GNUC__ */
#if defined(__GNUC__) && !COMPILER(RVCT)
#define GNC_COMPILER_GCC 1
#endif
/* COMPILER(MINGW) */
#if defined(MINGW) || defined(__MINGW32__)
#define GNC_COMPILER_MINGW 1
#endif
/* ENABLE macro defaults */
#define GNC_DEPRECATED(message) __attribute__ ((__deprecated__ (message)))
#endif /* GNC_PLATFORM_H */