| 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_EDG_H |
| 9 | #define BOOST_PREDEF_COMPILER_EDG_H |
| 10 | |
| 11 | #include <boost/predef/version_number.h> |
| 12 | #include <boost/predef/make.h> |
| 13 | |
| 14 | /* tag::reference[] |
| 15 | = `BOOST_COMP_EDG` |
| 16 | |
| 17 | http://en.wikipedia.org/wiki/Edison_Design_Group[EDG {CPP} Frontend] compiler. |
| 18 | Version number available as major, minor, and patch. |
| 19 | |
| 20 | [options="header"] |
| 21 | |=== |
| 22 | | {predef_symbol} | {predef_version} |
| 23 | |
| 24 | | `+__EDG__+` | {predef_detection} |
| 25 | |
| 26 | | `+__EDG_VERSION__+` | V.R.0 |
| 27 | |=== |
| 28 | */ // end::reference[] |
| 29 | |
| 30 | #define BOOST_COMP_EDG BOOST_VERSION_NUMBER_NOT_AVAILABLE |
| 31 | |
| 32 | #if defined(__EDG__) |
| 33 | # define BOOST_COMP_EDG_DETECTION BOOST_PREDEF_MAKE_10_VRR(__EDG_VERSION__) |
| 34 | #endif |
| 35 | |
| 36 | #ifdef BOOST_COMP_EDG_DETECTION |
| 37 | # if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED) |
| 38 | # define BOOST_COMP_EDG_EMULATED BOOST_COMP_EDG_DETECTION |
| 39 | # else |
| 40 | # undef BOOST_COMP_EDG |
| 41 | # define BOOST_COMP_EDG BOOST_COMP_EDG_DETECTION |
| 42 | # endif |
| 43 | # define BOOST_COMP_EDG_AVAILABLE |
| 44 | # include <boost/predef/detail/comp_detected.h> |
| 45 | #endif |
| 46 | |
| 47 | #define BOOST_COMP_EDG_NAME "EDG C++ Frontend" |
| 48 | |
| 49 | #endif |
| 50 | |
| 51 | #include <boost/predef/detail/test.h> |
| 52 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_EDG,BOOST_COMP_EDG_NAME) |
| 53 | |
| 54 | #ifdef BOOST_COMP_EDG_EMULATED |
| 55 | #include <boost/predef/detail/test.h> |
| 56 | BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_EDG_EMULATED,BOOST_COMP_EDG_NAME) |
| 57 | #endif |
| 58 | |