Ticket #11655: diab.patch

File diab.patch, 1.5 KB (added by Brian Kuhl <brian.kuhl@…>, 7 years ago)
  • boost_1_59_0/boost/config/compiler/diab.hpp

    diff -uNdr BB_boost\usr\h\public\boost\config/compiler/diab.hpp VSBsim\usr\h\public\boost\config/compiler/diab.hpp
     
     1//
     2//
     3
     4
     5// Check this is a recent EDG based compiler, otherwise we don't support it here:
     6
     7
     8#ifndef __EDG_VERSION__
     9#     error "Unknown Diab compiler version - please run the configure tests and report the results"
     10#endif
     11
     12#include "boost/config/compiler/common_edg.hpp"
     13
     14#define BOOST_HAS_LONG_LONG
     15#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
     16#define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
     17#define BOOST_NO_CXX11_HDR_CODECVT
     18#define BOOST_COMPILER "Wind River Diab " BOOST_STRINGIZE(__VERSION_NUMBER__)
  • boost_1_59_0/boost/config/select_compiler_config.hpp

    diff -uNdr BB_boost\usr\h\public\boost\config/select_compiler_config.hpp VSBsim\usr\h\public\boost\config/select_compiler_config.hpp
     
    4848//  Digital Mars C++
    4949#   define BOOST_COMPILER_CONFIG "boost/config/compiler/digitalmars.hpp"
    5050
     51#elif defined __DCC__
     52//  Wind River Diab C++
     53#   define BOOST_COMPILER_CONFIG "boost/config/compiler/diab.hpp"
     54
    5155# elif defined(__GNUC__) && !defined(__ibmxl__)
    5256//  GNU C++:
    5357#   define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc.hpp"