MessagePack for C
include
msgpack
predef
compiler
sunpro.h
Go to the documentation of this file.
1
/*
2
Copyright Rene Rivera 2008-2015
3
Distributed under the Boost Software License, Version 1.0.
4
(See accompanying file LICENSE_1_0.txt or copy at
5
http://www.boost.org/LICENSE_1_0.txt)
6
*/
7
8
#ifndef MSGPACK_PREDEF_COMPILER_SUNPRO_H
9
#define MSGPACK_PREDEF_COMPILER_SUNPRO_H
10
11
#include <
msgpack/predef/version_number.h
>
12
#include <
msgpack/predef/make.h
>
13
14
/*`
15
[heading `MSGPACK_COMP_SUNPRO`]
16
17
[@http://en.wikipedia.org/wiki/Oracle_Solaris_Studio Oracle Solaris Studio] compiler.
18
Version number available as major, minor, and patch.
19
20
[table
21
[[__predef_symbol__] [__predef_version__]]
22
23
[[`__SUNPRO_CC`] [__predef_detection__]]
24
[[`__SUNPRO_C`] [__predef_detection__]]
25
26
[[`__SUNPRO_CC`] [V.R.P]]
27
[[`__SUNPRO_C`] [V.R.P]]
28
[[`__SUNPRO_CC`] [VV.RR.P]]
29
[[`__SUNPRO_C`] [VV.RR.P]]
30
]
31
*/
32
33
#define MSGPACK_COMP_SUNPRO MSGPACK_VERSION_NUMBER_NOT_AVAILABLE
34
35
#if defined(__SUNPRO_CC) || defined(__SUNPRO_C)
36
# if !defined(MSGPACK_COMP_SUNPRO_DETECTION) && defined(__SUNPRO_CC)
37
# if (__SUNPRO_CC < 0x5100)
38
# define MSGPACK_COMP_SUNPRO_DETECTION MSGPACK_PREDEF_MAKE_0X_VRP(__SUNPRO_CC)
39
# else
40
# define MSGPACK_COMP_SUNPRO_DETECTION MSGPACK_PREDEF_MAKE_0X_VVRRP(__SUNPRO_CC)
41
# endif
42
# endif
43
# if !defined(MSGPACK_COMP_SUNPRO_DETECTION) && defined(__SUNPRO_C)
44
# if (__SUNPRO_C < 0x5100)
45
# define MSGPACK_COMP_SUNPRO_DETECTION MSGPACK_PREDEF_MAKE_0X_VRP(__SUNPRO_C)
46
# else
47
# define MSGPACK_COMP_SUNPRO_DETECTION MSGPACK_PREDEF_MAKE_0X_VVRRP(__SUNPRO_C)
48
# endif
49
# endif
50
# if !defined(MSGPACK_COMP_SUNPRO_DETECTION)
51
# define MSGPACK_COMP_SUNPRO_DETECTION MSGPACK_VERSION_NUMBER_AVAILABLE
52
# endif
53
#endif
54
55
#ifdef MSGPACK_COMP_SUNPRO_DETECTION
56
# if defined(MSGPACK_PREDEF_DETAIL_COMP_DETECTED)
57
# define MSGPACK_COMP_SUNPRO_EMULATED MSGPACK_COMP_SUNPRO_DETECTION
58
# else
59
# undef MSGPACK_COMP_SUNPRO
60
# define MSGPACK_COMP_SUNPRO MSGPACK_COMP_SUNPRO_DETECTION
61
# endif
62
# define MSGPACK_COMP_SUNPRO_AVAILABLE
63
# include <
msgpack/predef/detail/comp_detected.h
>
64
#endif
65
66
#define MSGPACK_COMP_SUNPRO_NAME "Oracle Solaris Studio"
67
68
#endif
69
70
#include <
msgpack/predef/detail/test.h
>
71
MSGPACK_PREDEF_DECLARE_TEST
(
MSGPACK_COMP_SUNPRO
,
MSGPACK_COMP_SUNPRO_NAME
)
72
73
#ifdef MSGPACK_COMP_SUNPRO_EMULATED
74
#include <
msgpack/predef/detail/test.h
>
75
MSGPACK_PREDEF_DECLARE_TEST
(MSGPACK_COMP_SUNPRO_EMULATED,
MSGPACK_COMP_SUNPRO_NAME
)
76
#endif
MSGPACK_COMP_SUNPRO
#define MSGPACK_COMP_SUNPRO
Definition:
sunpro.h:33
version_number.h
test.h
comp_detected.h
MSGPACK_COMP_SUNPRO_NAME
#define MSGPACK_COMP_SUNPRO_NAME
Definition:
sunpro.h:66
MSGPACK_PREDEF_DECLARE_TEST
#define MSGPACK_PREDEF_DECLARE_TEST(x, s)
Definition:
test.h:13
make.h
Generated by
1.8.17