1 | /* |
2 | Copyright Rene Rivera 2008-2014 |
3 | Distributed under the Boost Software License, Version 1.0. |
4 | (See accompanying file LICENSE_1_0.txt or copy at |
5 | http://www.boost.org/LICENSE_1_0.txt) |
6 | */ |
7 | |
8 | #ifndef BOOST_PREDEF_COMPILER_METROWERKS_H |
9 | #define BOOST_PREDEF_COMPILER_METROWERKS_H |
10 | |
11 | #include <boost/predef/version_number.h> |
12 | #include <boost/predef/make.h> |
13 | |
14 | /*` |
15 | [heading `BOOST_COMP_MWERKS`] |
16 | |
17 | [@http://en.wikipedia.org/wiki/CodeWarrior Metrowerks CodeWarrior] compiler. |
18 | Version number available as major, minor, and patch. |
19 | |
20 | [table |
21 | [[__predef_symbol__] [__predef_version__]] |
22 | |
23 | [[`__MWERKS__`] [__predef_detection__]] |
24 | [[`__CWCC__`] [__predef_detection__]] |
25 | |
26 | [[`__CWCC__`] [V.R.P]] |
27 | [[`__MWERKS__`] [V.R.P >= 4.2.0]] |
28 | [[`__MWERKS__`] [9.R.0]] |
29 | [[`__MWERKS__`] [8.R.0]] |
30 | ] |
31 | */ |
32 | |
33 | #define BOOST_COMP_MWERKS BOOST_VERSION_NUMBER_NOT_AVAILABLE |
34 | |
35 | #if defined(__MWERKS__) || defined(__CWCC__) |
36 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && defined(__CWCC__) |
37 | # define BOOST_COMP_MWERKS_DETECTION BOOST_PREDEF_MAKE_0X_VRPP(__CWCC__) |
38 | # endif |
39 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x4200) |
40 | # define BOOST_COMP_MWERKS_DETECTION BOOST_PREDEF_MAKE_0X_VRPP(__MWERKS__) |
41 | # endif |
42 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3204) // note the "skip": 04->9.3 |
43 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(9,(__MWERKS__)%100-1,0) |
44 | # endif |
45 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3200) |
46 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(9,(__MWERKS__)%100,0) |
47 | # endif |
48 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3000) |
49 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(8,(__MWERKS__)%100,0) |
50 | # endif |
51 | # if !defined(BOOST_COMP_MWERKS_DETECTION) |
52 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER_AVAILABLE |
53 | # endif |
54 | #endif |
55 | |
56 | #ifdef BOOST_COMP_MWERKS_DETECTION |
57 | # if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED) |
58 | # define BOOST_COMP_MWERKS_EMULATED BOOST_COMP_MWERKS_DETECTION |
59 | # else |
60 | # undef BOOST_COMP_MWERKS |
61 | # define BOOST_COMP_MWERKS BOOST_COMP_MWERKS_DETECTION |
62 | # endif |
63 | # define BOOST_COMP_MWERKS_AVAILABLE |
64 | # include <boost/predef/detail/comp_detected.h> |
65 | #endif |
66 | |
67 | #define BOOST_COMP_MWERKS_NAME "Metrowerks CodeWarrior" |
68 | |
69 | #include <boost/predef/detail/test.h> |
70 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_MWERKS,BOOST_COMP_MWERKS_NAME) |
71 | |
72 | #ifdef BOOST_COMP_MWERKS_EMULATED |
73 | #include <boost/predef/detail/test.h> |
74 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_MWERKS_EMULATED,BOOST_COMP_MWERKS_NAME) |
75 | #endif |
76 | |
77 | |
78 | #endif |
79 | |