• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  (C) Copyright Brian Kuhl 2016.
2 //  Use, modification and distribution are subject to the
3 //  Boost Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 // Check this is a recent EDG based compiler, otherwise we don't support it here:
7 
8 
9 #ifndef __EDG_VERSION__
10 #     error "Unknown Diab compiler version - please run the configure tests and report the results"
11 #endif
12 
13 #include "boost/config/compiler/common_edg.hpp"
14 
15 #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
16 #define BOOST_BUGGY_INTEGRAL_CONSTANT_EXPRESSIONS
17 
18 #define BOOST_MPL_CFG_NO_HAS_XXX_TEMPLATE
19 #define BOOST_LOG_NO_MEMBER_TEMPLATE_FRIENDS
20 #define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
21 
22 #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
23 #define BOOST_NO_CXX11_HDR_CODECVT
24 #define BOOST_NO_CXX11_NUMERIC_LIMITS
25 
26 #define BOOST_COMPILER "Wind River Diab " BOOST_STRINGIZE(__VERSION_NUMBER__)
27