Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/predef/architecture/x86.h @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +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_X86_H |
Chris@16 | 9 #define BOOST_PREDEF_ARCHITECTURE_X86_H |
Chris@16 | 10 |
Chris@16 | 11 #include <boost/predef/architecture/x86/32.h> |
Chris@16 | 12 #include <boost/predef/architecture/x86/64.h> |
Chris@16 | 13 |
Chris@16 | 14 /*` |
Chris@16 | 15 [heading `BOOST_ARCH_X86`] |
Chris@16 | 16 |
Chris@16 | 17 [@http://en.wikipedia.org/wiki/X86 Intel x86] architecture. This is |
Chris@16 | 18 a category to indicate that either `BOOST_ARCH_X86_32` or |
Chris@16 | 19 `BOOST_ARCH_X86_64` is detected. |
Chris@16 | 20 */ |
Chris@16 | 21 |
Chris@16 | 22 #define BOOST_ARCH_X86 BOOST_VERSION_NUMBER_NOT_AVAILABLE |
Chris@16 | 23 |
Chris@16 | 24 #if BOOST_ARCH_X86_32 || BOOST_ARCH_X86_64 |
Chris@16 | 25 # undef BOOST_ARCH_X86 |
Chris@16 | 26 # define BOOST_ARCH_X86 BOOST_VERSION_NUMBER_AVAILABLE |
Chris@16 | 27 #endif |
Chris@16 | 28 |
Chris@16 | 29 #if BOOST_ARCH_X86 |
Chris@16 | 30 # define BOOST_ARCH_X86_AVAILABLE |
Chris@16 | 31 #endif |
Chris@16 | 32 |
Chris@16 | 33 #define BOOST_ARCH_X86_NAME "Intel x86" |
Chris@16 | 34 |
Chris@16 | 35 #include <boost/predef/detail/test.h> |
Chris@16 | 36 BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_X86,BOOST_ARCH_X86_NAME) |
Chris@16 | 37 |
Chris@16 | 38 #endif |