blob: f0167a3f87fd7eaddf673e25e97f91736af08add [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// Boost compiler configuration selection header file
2
3// (C) Copyright John Maddock 2001 - 2003.
4// (C) Copyright Jens Maurer 2001 - 2002.
5// Use, modification and distribution are subject to the
6// Boost Software License, Version 1.0. (See accompanying file
7// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8
9
10// See http://www.boost.org for most recent version.
11
12// locate which std lib we are using and define BOOST_STDLIB_CONFIG as needed:
13
14// First include <cstddef> to determine if some version of STLport is in use as the std lib
15// (do not rely on this header being included since users can short-circuit this header
16// if they know whose std lib they are using.)
17#ifdef __cplusplus
18# include <cstddef>
19#else
20# include <stddef.h>
21#endif
22
23#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
24// STLPort library; this _must_ come first, otherwise since
25// STLport typically sits on top of some other library, we
26// can end up detecting that first rather than STLport:
Jeff Thompson2277ce52013-08-01 17:34:11 -070027# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/stlport.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070028
29#else
30
31// If our std lib was not some version of STLport, then include <utility> as it is about
32// the smallest of the std lib headers that includes real C++ stuff. (Some std libs do not
33// include their C++-related macros in <cstddef> so this additional include makes sure
34// we get those definitions)
35// (again do not rely on this header being included since users can short-circuit this
36// header if they know whose std lib they are using.)
Jeff Thompson2277ce52013-08-01 17:34:11 -070037#include <ndnboost/config/no_tr1/utility.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070038
39#if defined(__LIBCOMO__)
40// Comeau STL:
Jeff Thompson2277ce52013-08-01 17:34:11 -070041#define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/libcomo.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070042
43#elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)
44// Rogue Wave library:
Jeff Thompson2277ce52013-08-01 17:34:11 -070045# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/roguewave.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070046
47#elif defined(_LIBCPP_VERSION)
48// libc++
Jeff Thompson2277ce52013-08-01 17:34:11 -070049# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/libcpp.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070050
51#elif defined(__GLIBCPP__) || defined(__GLIBCXX__)
52// GNU libstdc++ 3
Jeff Thompson2277ce52013-08-01 17:34:11 -070053# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/libstdcpp3.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070054
55#elif defined(__STL_CONFIG_H)
56// generic SGI STL
Jeff Thompson2277ce52013-08-01 17:34:11 -070057# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/sgi.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070058
59#elif defined(__MSL_CPP__)
60// MSL standard lib:
Jeff Thompson2277ce52013-08-01 17:34:11 -070061# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/msl.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070062
63#elif defined(__IBMCPP__)
64// take the default VACPP std lib
Jeff Thompson2277ce52013-08-01 17:34:11 -070065# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/vacpp.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070066
67#elif defined(MSIPL_COMPILE_H)
68// Modena C++ standard library
Jeff Thompson2277ce52013-08-01 17:34:11 -070069# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/modena.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070070
71#elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER)
72// Dinkumware Library (this has to appear after any possible replacement libraries):
Jeff Thompson2277ce52013-08-01 17:34:11 -070073# define BOOST_STDLIB_CONFIG "ndnboost/config/stdlib/dinkumware.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070074
75#elif defined (BOOST_ASSERT_CONFIG)
76// this must come last - generate an error if we don't
77// recognise the library:
78# error "Unknown standard library - please configure and report the results to boost.org"
79
80#endif
81
82#endif
83
84
85