Chris@16: /* Chris@101: Copyright Rene Rivera 2008-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_IA64_H Chris@16: #define BOOST_PREDEF_ARCHITECTURE_IA64_H Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: /*` Chris@16: [heading `BOOST_ARCH_IA64`] Chris@16: Chris@16: [@http://en.wikipedia.org/wiki/Ia64 Intel Itanium 64] architecture. Chris@16: Chris@16: [table Chris@16: [[__predef_symbol__] [__predef_version__]] Chris@16: Chris@16: [[`__ia64__`] [__predef_detection__]] Chris@16: [[`_IA64`] [__predef_detection__]] Chris@16: [[`__IA64__`] [__predef_detection__]] Chris@16: [[`__ia64`] [__predef_detection__]] Chris@16: [[`_M_IA64`] [__predef_detection__]] Chris@16: [[`__itanium__`] [__predef_detection__]] Chris@16: ] Chris@16: */ Chris@16: Chris@16: #define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_NOT_AVAILABLE Chris@16: Chris@16: #if defined(__ia64__) || defined(_IA64) || \ Chris@16: defined(__IA64__) || defined(__ia64) || \ Chris@16: defined(_M_IA64) || defined(__itanium__) Chris@16: # undef BOOST_ARCH_IA64 Chris@16: # define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_AVAILABLE Chris@16: #endif Chris@16: Chris@16: #if BOOST_ARCH_IA64 Chris@16: # define BOOST_ARCH_IA64_AVAILABLE Chris@16: #endif Chris@16: Chris@16: #define BOOST_ARCH_IA64_NAME "Intel Itanium 64" Chris@16: Chris@16: #include Chris@16: BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_IA64,BOOST_ARCH_IA64_NAME) Chris@16: Chris@16: #endif