Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
stl.h
Go to the documentation of this file.
1/* Copyright (C) 2013 Wildfire Games.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23/*
24 * fixes for various STL implementations
25 */
26
27#ifndef INCLUDED_STL
28#define INCLUDED_STL
29
30#include "lib/config.h"
31#include "compiler.h"
32#include <cstdlib> // indirectly pull in bits/c++config.h on Linux, so __GLIBCXX__ is defined
33
34// detect STL version
35// .. Dinkumware
36#if MSC_VERSION
37# include <yvals.h> // defines _CPPLIB_VER
38#endif
39#if defined(_CPPLIB_VER)
40# define STL_DINKUMWARE _CPPLIB_VER
41#else
42# define STL_DINKUMWARE 0
43#endif
44// .. GCC
45#if defined(__GLIBCPP__)
46# define STL_GCC __GLIBCPP__
47#elif defined(__GLIBCXX__)
48# define STL_GCC __GLIBCXX__
49#else
50# define STL_GCC 0
51#endif
52// .. ICC
53#if defined(__INTEL_CXXLIB_ICC)
54# define STL_ICC __INTEL_CXXLIB_ICC
55#else
56# define STL_ICC 0
57#endif
58
59
60// disable (slow!) iterator checks in release builds (unless someone already defined this)
61#if STL_DINKUMWARE && defined(NDEBUG) && !defined(_SECURE_SCL)
62# define _SECURE_SCL 0
63#endif
64
65
66// pass "disable exceptions" setting on to the STL
67#if CONFIG_DISABLE_EXCEPTIONS
68# if STL_DINKUMWARE
69# define _HAS_EXCEPTIONS 0
70# else
71# define STL_NO_EXCEPTIONS
72# endif
73#endif
74
75#endif // #ifndef INCLUDED_STL