annotate DEPENDENCIES/generic/include/boost/predef/compiler/sgi_mipspro.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-2014
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_COMPILER_SGI_MIPSPRO_H
Chris@16 9 #define BOOST_PREDEF_COMPILER_SGI_MIPSPRO_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_COMP_SGI`]
Chris@16 16
Chris@16 17 [@http://en.wikipedia.org/wiki/MIPSpro SGI MIPSpro] compiler.
Chris@16 18 Version number available as major, minor, and patch.
Chris@16 19
Chris@16 20 [table
Chris@16 21 [[__predef_symbol__] [__predef_version__]]
Chris@16 22
Chris@16 23 [[`__sgi`] [__predef_detection__]]
Chris@16 24 [[`sgi`] [__predef_detection__]]
Chris@16 25
Chris@16 26 [[`_SGI_COMPILER_VERSION`] [V.R.P]]
Chris@16 27 [[`_COMPILER_VERSION`] [V.R.P]]
Chris@16 28 ]
Chris@16 29 */
Chris@16 30
Chris@16 31 #define BOOST_COMP_SGI BOOST_VERSION_NUMBER_NOT_AVAILABLE
Chris@16 32
Chris@16 33 #if defined(__sgi) || defined(sgi)
Chris@101 34 # if !defined(BOOST_COMP_SGI_DETECTION) && defined(_SGI_COMPILER_VERSION)
Chris@101 35 # define BOOST_COMP_SGI_DETECTION BOOST_PREDEF_MAKE_10_VRP(_SGI_COMPILER_VERSION)
Chris@16 36 # endif
Chris@101 37 # if !defined(BOOST_COMP_SGI_DETECTION) && defined(_COMPILER_VERSION)
Chris@101 38 # define BOOST_COMP_SGI_DETECTION BOOST_PREDEF_MAKE_10_VRP(_COMPILER_VERSION)
Chris@16 39 # endif
Chris@101 40 # if !defined(BOOST_COMP_SGI_DETECTION)
Chris@101 41 # define BOOST_COMP_SGI_DETECTION BOOST_VERSION_NUMBER_AVAILABLE
Chris@16 42 # endif
Chris@16 43 #endif
Chris@16 44
Chris@101 45 #ifdef BOOST_COMP_SGI_DETECTION
Chris@101 46 # if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED)
Chris@101 47 # define BOOST_COMP_SGI_EMULATED BOOST_COMP_SGI_DETECTION
Chris@101 48 # else
Chris@101 49 # undef BOOST_COMP_SGI
Chris@101 50 # define BOOST_COMP_SGI BOOST_COMP_SGI_DETECTION
Chris@101 51 # endif
Chris@16 52 # define BOOST_COMP_SGI_AVAILABLE
Chris@101 53 # include <boost/predef/detail/comp_detected.h>
Chris@16 54 #endif
Chris@16 55
Chris@16 56 #define BOOST_COMP_SGI_NAME "SGI MIPSpro"
Chris@16 57
Chris@16 58 #include <boost/predef/detail/test.h>
Chris@16 59 BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_SGI,BOOST_COMP_SGI_NAME)
Chris@16 60
Chris@101 61 #ifdef BOOST_COMP_SGI_EMULATED
Chris@101 62 #include <boost/predef/detail/test.h>
Chris@101 63 BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_SGI_EMULATED,BOOST_COMP_SGI_NAME)
Chris@101 64 #endif
Chris@101 65
Chris@16 66
Chris@16 67 #endif