MessagePack for C
64.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_ARCHITECTURE_X86_64_H
9 #define MSGPACK_PREDEF_ARCHITECTURE_X86_64_H
10 
12 #include <msgpack/predef/make.h>
13 
14 /*`
15 [heading `MSGPACK_ARCH_X86_64`]
16 
17 [@http://en.wikipedia.org/wiki/Ia64 Intel IA-64] architecture.
18 
19 [table
20  [[__predef_symbol__] [__predef_version__]]
21 
22  [[`__x86_64`] [__predef_detection__]]
23  [[`__x86_64__`] [__predef_detection__]]
24  [[`__amd64__`] [__predef_detection__]]
25  [[`__amd64`] [__predef_detection__]]
26  [[`_M_X64`] [__predef_detection__]]
27  ]
28  */
29 
30 #define MSGPACK_ARCH_X86_64 MSGPACK_VERSION_NUMBER_NOT_AVAILABLE
31 
32 #if defined(__x86_64) || defined(__x86_64__) || \
33  defined(__amd64__) || defined(__amd64) || \
34  defined(_M_X64)
35 # undef MSGPACK_ARCH_X86_64
36 # define MSGPACK_ARCH_X86_64 MSGPACK_VERSION_NUMBER_AVAILABLE
37 #endif
38 
39 #if MSGPACK_ARCH_X86_64
40 # define MSGPACK_ARCH_X86_64_AVAILABLE
41 #endif
42 
43 #define MSGPACK_ARCH_X86_64_NAME "Intel x86-64"
44 
46 
47 #endif
48 
#define MSGPACK_ARCH_X86_64
Definition: 64.h:30
#define MSGPACK_PREDEF_DECLARE_TEST(x, s)
Definition: test.h:13
#define MSGPACK_ARCH_X86_64_NAME
Definition: 64.h:43