1 | /* |
2 | Copyright Rene Rivera 2008-2015 |
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 | /* tag::reference[] |
15 | = `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 | [options="header"] |
21 | |=== |
22 | | {predef_symbol} | {predef_version} |
23 | |
24 | | `+__MWERKS__+` | {predef_detection} |
25 | | `+__CWCC__+` | {predef_detection} |
26 | |
27 | | `+__CWCC__+` | V.R.P |
28 | | `+__MWERKS__+` | V.R.P >= 4.2.0 |
29 | | `+__MWERKS__+` | 9.R.0 |
30 | | `+__MWERKS__+` | 8.R.0 |
31 | |=== |
32 | */ // end::reference[] |
33 | |
34 | #define BOOST_COMP_MWERKS BOOST_VERSION_NUMBER_NOT_AVAILABLE |
35 | |
36 | #if defined(__MWERKS__) || defined(__CWCC__) |
37 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && defined(__CWCC__) |
38 | # define BOOST_COMP_MWERKS_DETECTION BOOST_PREDEF_MAKE_0X_VRPP(__CWCC__) |
39 | # endif |
40 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x4200) |
41 | # define BOOST_COMP_MWERKS_DETECTION BOOST_PREDEF_MAKE_0X_VRPP(__MWERKS__) |
42 | # endif |
43 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3204) // note the "skip": 04->9.3 |
44 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(9,(__MWERKS__)%100-1,0) |
45 | # endif |
46 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3200) |
47 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(9,(__MWERKS__)%100,0) |
48 | # endif |
49 | # if !defined(BOOST_COMP_MWERKS_DETECTION) && (__MWERKS__ >= 0x3000) |
50 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER(8,(__MWERKS__)%100,0) |
51 | # endif |
52 | # if !defined(BOOST_COMP_MWERKS_DETECTION) |
53 | # define BOOST_COMP_MWERKS_DETECTION BOOST_VERSION_NUMBER_AVAILABLE |
54 | # endif |
55 | #endif |
56 | |
57 | #ifdef BOOST_COMP_MWERKS_DETECTION |
58 | # if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED) |
59 | # define BOOST_COMP_MWERKS_EMULATED BOOST_COMP_MWERKS_DETECTION |
60 | # else |
61 | # undef BOOST_COMP_MWERKS |
62 | # define BOOST_COMP_MWERKS BOOST_COMP_MWERKS_DETECTION |
63 | # endif |
64 | # define BOOST_COMP_MWERKS_AVAILABLE |
65 | # include <boost/predef/detail/comp_detected.h> |
66 | #endif |
67 | |
68 | #define BOOST_COMP_MWERKS_NAME "Metrowerks CodeWarrior" |
69 | |
70 | #endif |
71 | |
72 | #include <boost/predef/detail/test.h> |
73 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_MWERKS,BOOST_COMP_MWERKS_NAME) |
74 | |
75 | #ifdef BOOST_COMP_MWERKS_EMULATED |
76 | #include <boost/predef/detail/test.h> |
77 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_MWERKS_EMULATED,BOOST_COMP_MWERKS_NAME) |
78 | #endif |
79 | |