1# /* **************************************************************************
2# * *
3# * (C) Copyright Paul Mensonides 2002-2011. *
4# * (C) Copyright Edward Diener 2011. *
5# * Distributed under the Boost Software License, Version 1.0. (See *
6# * accompanying file LICENSE_1_0.txt or copy at *
7# * http://www.boost.org/LICENSE_1_0.txt) *
8# * *
9# ************************************************************************** */
10#
11# /* See http://www.boost.org for most recent version. */
12#
13# ifndef SIMDPP_PREPROCESSOR_CONFIG_CONFIG_HPP
14# define SIMDPP_PREPROCESSOR_CONFIG_CONFIG_HPP
15#
16# /* SIMDPP_PP_CONFIG_FLAGS */
17#
18# define SIMDPP_PP_CONFIG_STRICT() 0x0001
19# define SIMDPP_PP_CONFIG_IDEAL() 0x0002
20#
21# define SIMDPP_PP_CONFIG_MSVC() 0x0004
22# define SIMDPP_PP_CONFIG_MWCC() 0x0008
23# define SIMDPP_PP_CONFIG_BCC() 0x0010
24// not supported
25# define SIMDPP_PP_CONFIG_EDG() 0x0020
26// not supported
27# define SIMDPP_PP_CONFIG_DMC() 0x0040
28#
29# ifndef SIMDPP_PP_CONFIG_FLAGS
30# if defined(__GCCXML__) || defined(__WAVE__) || defined(__MWERKS__) && __MWERKS__ >= 0x3200
31# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_STRICT())
32# elif defined(__EDG__) || defined(__EDG_VERSION__)
33# if defined(_MSC_VER) && !defined(__clang__) && (defined(__INTELLISENSE__) || __EDG_VERSION__ >= 308)
34# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_MSVC())
35# else
36# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_EDG() | SIMDPP_PP_CONFIG_STRICT())
37# endif
38# elif defined(_MSC_VER) && defined(__clang__)
39# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_STRICT())
40# elif defined(__MWERKS__)
41# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_MWCC())
42# elif defined(__DMC__)
43# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_DMC())
44# elif defined(__BORLANDC__) && __BORLANDC__ >= 0x581
45# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_STRICT())
46# elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
47# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_BCC())
48# elif defined(_MSC_VER)
49# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_MSVC())
50# else
51# define SIMDPP_PP_CONFIG_FLAGS() (SIMDPP_PP_CONFIG_STRICT())
52# endif
53# endif
54#
55# /* SIMDPP_PP_CONFIG_EXTENDED_LINE_INFO */
56#
57# ifndef SIMDPP_PP_CONFIG_EXTENDED_LINE_INFO
58# define SIMDPP_PP_CONFIG_EXTENDED_LINE_INFO 0
59# endif
60#
61# /* SIMDPP_PP_CONFIG_ERRORS */
62#
63# ifndef SIMDPP_PP_CONFIG_ERRORS
64# ifdef NDEBUG
65# define SIMDPP_PP_CONFIG_ERRORS 0
66# else
67# define SIMDPP_PP_CONFIG_ERRORS 1
68# endif
69# endif
70#
71# /* SIMDPP_PP_VARIADICS */
72#
73# define SIMDPP_PP_VARIADICS_MSVC 0
74# if !defined SIMDPP_PP_VARIADICS
75# /* variadic support explicitly disabled for all untested compilers */
76# if defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || ( defined __SUNPRO_CC && __SUNPRO_CC < 0x5120 ) || defined __HP_aCC && !defined __EDG__ || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI
77# define SIMDPP_PP_VARIADICS 0
78# elif defined(_MSC_VER) && defined(__clang__)
79# define SIMDPP_PP_VARIADICS 1
80# /* VC++ (C/C++) and Intel C++ Compiler >= 17.0 with MSVC */
81# elif defined _MSC_VER && _MSC_VER >= 1400 && (!defined __EDG__ || defined(__INTELLISENSE__) || defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 1700)
82# define SIMDPP_PP_VARIADICS 1
83# undef SIMDPP_PP_VARIADICS_MSVC
84# define SIMDPP_PP_VARIADICS_MSVC 1
85# /* Wave (C/C++), GCC (C++) */
86# elif defined __WAVE__ && __WAVE_HAS_VARIADICS__ || defined __GNUC__ && defined __GXX_EXPERIMENTAL_CXX0X__ && __GXX_EXPERIMENTAL_CXX0X__
87# define SIMDPP_PP_VARIADICS 1
88# /* EDG-based (C/C++), GCC (C), and unknown (C/C++) */
89# elif !defined __cplusplus && __STDC_VERSION__ >= 199901L || __cplusplus >= 201103L
90# define SIMDPP_PP_VARIADICS 1
91# else
92# define SIMDPP_PP_VARIADICS 0
93# endif
94# elif !SIMDPP_PP_VARIADICS + 1 < 2
95# undef SIMDPP_PP_VARIADICS
96# define SIMDPP_PP_VARIADICS 1
97# if defined _MSC_VER && _MSC_VER >= 1400 && !defined(__clang__) && (defined(__INTELLISENSE__) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 1700) || !(defined __EDG__ || defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || defined __SUNPRO_CC || defined __HP_aCC || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI))
98# undef SIMDPP_PP_VARIADICS_MSVC
99# define SIMDPP_PP_VARIADICS_MSVC 1
100# endif
101# else
102# undef SIMDPP_PP_VARIADICS
103# define SIMDPP_PP_VARIADICS 0
104# endif
105#
106# if SIMDPP_PP_VARIADICS == 0
107# error "This compiler has not been recognized as a supported compiler (lack of variadic support)"
108# endif
109#
110# endif
111