Chris@16: /* Chris@101: Copyright Rene Rivera 2011-2013 Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENSE_1_0.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_PREDEF_ARCHITECTURE_CONVEX_H Chris@16: #define BOOST_PREDEF_ARCHITECTURE_CONVEX_H Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: /*` Chris@16: [heading `BOOST_ARCH_CONVEX`] Chris@16: Chris@16: [@http://en.wikipedia.org/wiki/Convex_Computer Convex Computer] architecture. Chris@16: Chris@16: [table Chris@16: [[__predef_symbol__] [__predef_version__]] Chris@16: Chris@16: [[`__convex__`] [__predef_detection__]] Chris@16: Chris@16: [[`__convex_c1__`] [1.0.0]] Chris@16: [[`__convex_c2__`] [2.0.0]] Chris@16: [[`__convex_c32__`] [3.2.0]] Chris@16: [[`__convex_c34__`] [3.4.0]] Chris@16: [[`__convex_c38__`] [3.8.0]] Chris@16: ] Chris@16: */ Chris@16: Chris@16: #define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER_NOT_AVAILABLE Chris@16: Chris@16: #if defined(__convex__) Chris@16: # undef BOOST_ARCH_CONVEX Chris@16: # if !defined(BOOST_ARCH_CONVEX) && defined(__convex_c1__) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER(1,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_CONVEX) && defined(__convex_c2__) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER(2,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_CONVEX) && defined(__convex_c32__) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER(3,2,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_CONVEX) && defined(__convex_c34__) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER(3,4,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_CONVEX) && defined(__convex_c38__) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER(3,8,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_CONVEX) Chris@16: # define BOOST_ARCH_CONVEX BOOST_VERSION_NUMBER_AVAILABLE Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: #if BOOST_ARCH_CONVEX Chris@16: # define BOOST_ARCH_CONVEX_AVAILABLE Chris@16: #endif Chris@16: Chris@16: #define BOOST_ARCH_CONVEX_NAME "Convex Computer" Chris@16: Chris@16: #include Chris@16: BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_CONVEX,BOOST_ARCH_CONVEX_NAME) Chris@16: Chris@16: Chris@16: Chris@16: #endif