123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- # define BOOST_CXX_GCCXML 0
- # define BOOST_CXX_COMO 0
- # define BOOST_CXX_DMC 0
- # define BOOST_CXX_INTEL 0
- # define BOOST_CXX_GNUC 0
- # define BOOST_CXX_KCC 0
- # define BOOST_CXX_SGI 0
- # define BOOST_CXX_TRU64 0
- # define BOOST_CXX_GHS 0
- # define BOOST_CXX_BORLAND 0
- # define BOOST_CXX_CW 0
- # define BOOST_CXX_SUNPRO 0
- # define BOOST_CXX_HPACC 0
- # define BOOST_CXX_MPW 0
- # define BOOST_CXX_IBMCPP 0
- # define BOOST_CXX_MSVC 0
- # define BOOST_CXX_PGI 0
- #if defined(__GCCXML__)
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc_xml.hpp"
- #elif defined __COMO__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/comeau.hpp"
- #elif defined __DMC__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/digitalmars.hpp"
- #elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp"
- # elif defined __GNUC__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc.hpp"
- #elif defined __KCC
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/kai.hpp"
- #elif defined __sgi
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/sgi_mipspro.hpp"
- #elif defined __DECCXX
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/compaq_cxx.hpp"
- #elif defined __ghs
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/greenhills.hpp"
- #elif defined __CODEGEARC__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/codegear.hpp"
- #elif defined __BORLANDC__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/borland.hpp"
- #elif defined __MWERKS__
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/metrowerks.hpp"
- #elif defined __SUNPRO_CC
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/sunpro_cc.hpp"
- #elif defined __HP_aCC
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/hp_acc.hpp"
- #elif defined(__MRC__) || defined(__SC__)
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/mpw.hpp"
- #elif defined(__IBMCPP__)
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/vacpp.hpp"
- #elif defined(__PGI)
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/pgi.hpp"
- #elif defined _MSC_VER
- # define BOOST_COMPILER_CONFIG "boost/config/compiler/visualc.hpp"
- #elif defined (BOOST_ASSERT_CONFIG)
- # error "Unknown compiler - please configure (http://www.boost.org/libs/config/config.htm#configuring) and report the results to the main boost mailing list (http://www.boost.org/more/mailing_lists.htm#main)"
- #endif
|