annotate DEPENDENCIES/generic/include/boost/predef/architecture/ia64.h @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*
Chris@101 2 Copyright Rene Rivera 2008-2013
Chris@16 3 Distributed under the Boost Software License, Version 1.0.
Chris@16 4 (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7
Chris@16 8 #ifndef BOOST_PREDEF_ARCHITECTURE_IA64_H
Chris@16 9 #define BOOST_PREDEF_ARCHITECTURE_IA64_H
Chris@16 10
Chris@16 11 #include <boost/predef/version_number.h>
Chris@16 12 #include <boost/predef/make.h>
Chris@16 13
Chris@16 14 /*`
Chris@16 15 [heading `BOOST_ARCH_IA64`]
Chris@16 16
Chris@16 17 [@http://en.wikipedia.org/wiki/Ia64 Intel Itanium 64] architecture.
Chris@16 18
Chris@16 19 [table
Chris@16 20 [[__predef_symbol__] [__predef_version__]]
Chris@16 21
Chris@16 22 [[`__ia64__`] [__predef_detection__]]
Chris@16 23 [[`_IA64`] [__predef_detection__]]
Chris@16 24 [[`__IA64__`] [__predef_detection__]]
Chris@16 25 [[`__ia64`] [__predef_detection__]]
Chris@16 26 [[`_M_IA64`] [__predef_detection__]]
Chris@16 27 [[`__itanium__`] [__predef_detection__]]
Chris@16 28 ]
Chris@16 29 */
Chris@16 30
Chris@16 31 #define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_NOT_AVAILABLE
Chris@16 32
Chris@16 33 #if defined(__ia64__) || defined(_IA64) || \
Chris@16 34 defined(__IA64__) || defined(__ia64) || \
Chris@16 35 defined(_M_IA64) || defined(__itanium__)
Chris@16 36 # undef BOOST_ARCH_IA64
Chris@16 37 # define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_AVAILABLE
Chris@16 38 #endif
Chris@16 39
Chris@16 40 #if BOOST_ARCH_IA64
Chris@16 41 # define BOOST_ARCH_IA64_AVAILABLE
Chris@16 42 #endif
Chris@16 43
Chris@16 44 #define BOOST_ARCH_IA64_NAME "Intel Itanium 64"
Chris@16 45
Chris@16 46 #include <boost/predef/detail/test.h>
Chris@16 47 BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_IA64,BOOST_ARCH_IA64_NAME)
Chris@16 48
Chris@16 49 #endif