]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/predef/compiler/sgi_mipspro.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / predef / compiler / sgi_mipspro.h
CommitLineData
7c673cae
FG
1/*
2Copyright Rene Rivera 2008-2015
3Distributed under the Boost Software License, Version 1.0.
4(See accompanying file LICENSE_1_0.txt or copy at
5http://www.boost.org/LICENSE_1_0.txt)
6*/
7
8#ifndef BOOST_PREDEF_COMPILER_SGI_MIPSPRO_H
9#define BOOST_PREDEF_COMPILER_SGI_MIPSPRO_H
10
11#include <boost/predef/version_number.h>
12#include <boost/predef/make.h>
13
f67539c2
TL
14/* tag::reference[]
15= `BOOST_COMP_SGI`
7c673cae 16
f67539c2 17http://en.wikipedia.org/wiki/MIPSpro[SGI MIPSpro] compiler.
7c673cae
FG
18Version number available as major, minor, and patch.
19
f67539c2
TL
20[options="header"]
21|===
22| {predef_symbol} | {predef_version}
7c673cae 23
f67539c2
TL
24| `+__sgi+` | {predef_detection}
25| `sgi` | {predef_detection}
7c673cae 26
f67539c2
TL
27| `+_SGI_COMPILER_VERSION+` | V.R.P
28| `+_COMPILER_VERSION+` | V.R.P
29|===
30*/ // end::reference[]
7c673cae
FG
31
32#define BOOST_COMP_SGI BOOST_VERSION_NUMBER_NOT_AVAILABLE
33
34#if defined(__sgi) || defined(sgi)
35# if !defined(BOOST_COMP_SGI_DETECTION) && defined(_SGI_COMPILER_VERSION)
36# define BOOST_COMP_SGI_DETECTION BOOST_PREDEF_MAKE_10_VRP(_SGI_COMPILER_VERSION)
37# endif
38# if !defined(BOOST_COMP_SGI_DETECTION) && defined(_COMPILER_VERSION)
39# define BOOST_COMP_SGI_DETECTION BOOST_PREDEF_MAKE_10_VRP(_COMPILER_VERSION)
40# endif
41# if !defined(BOOST_COMP_SGI_DETECTION)
42# define BOOST_COMP_SGI_DETECTION BOOST_VERSION_NUMBER_AVAILABLE
43# endif
44#endif
45
46#ifdef BOOST_COMP_SGI_DETECTION
47# if defined(BOOST_PREDEF_DETAIL_COMP_DETECTED)
48# define BOOST_COMP_SGI_EMULATED BOOST_COMP_SGI_DETECTION
49# else
50# undef BOOST_COMP_SGI
51# define BOOST_COMP_SGI BOOST_COMP_SGI_DETECTION
52# endif
53# define BOOST_COMP_SGI_AVAILABLE
54# include <boost/predef/detail/comp_detected.h>
55#endif
56
57#define BOOST_COMP_SGI_NAME "SGI MIPSpro"
58
59#endif
60
61#include <boost/predef/detail/test.h>
62BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_SGI,BOOST_COMP_SGI_NAME)
63
64#ifdef BOOST_COMP_SGI_EMULATED
65#include <boost/predef/detail/test.h>
66BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_SGI_EMULATED,BOOST_COMP_SGI_NAME)
67#endif