sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997
|
sl@0
|
3 |
* Moscow Center for SPARC Technology
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* Copyright (c) 1999
|
sl@0
|
6 |
* Boris Fomitchev
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
9 |
* or implied. Any use is at your own risk.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
12 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
13 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
14 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
15 |
* modified is included with the above copyright notice.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
/*
|
sl@0
|
20 |
* Purpose of this file :
|
sl@0
|
21 |
*
|
sl@0
|
22 |
* A list of COMPILER-SPECIFIC portion of STLport settings.
|
sl@0
|
23 |
* This file is provided to help in manual configuration
|
sl@0
|
24 |
* of STLport. This file is being included by stlcomp.h
|
sl@0
|
25 |
* when STLport is unable to identify your compiler.
|
sl@0
|
26 |
* Please remove the error diagnostic below before adjusting
|
sl@0
|
27 |
* macros.
|
sl@0
|
28 |
*
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
# ifndef _STLP_MYCOMP_H
|
sl@0
|
31 |
# define _STLP_MYCOMP_H
|
sl@0
|
32 |
|
sl@0
|
33 |
# error "Your compiler version is not recognized by STLport. Please edit <config/stl_mycomp.h>"
|
sl@0
|
34 |
|
sl@0
|
35 |
//==========================================================
|
sl@0
|
36 |
|
sl@0
|
37 |
// the values choosen here as defaults try to give
|
sl@0
|
38 |
// maximum functionality on the most conservative settings
|
sl@0
|
39 |
|
sl@0
|
40 |
// Mostly correct guess, change it for Alpha (and other environments
|
sl@0
|
41 |
// that has 64-bit "long")
|
sl@0
|
42 |
// # define _STLP_UINT32_T unsigned long
|
sl@0
|
43 |
|
sl@0
|
44 |
// Disables wchar_t functionality
|
sl@0
|
45 |
// # define _STLP_NO_WCHAR_T 1
|
sl@0
|
46 |
|
sl@0
|
47 |
// Define if wchar_t is not a unique type, and is actually a typedef to unsigned short.
|
sl@0
|
48 |
// # define _STLP_WCHAR_T_IS_USHORT 1
|
sl@0
|
49 |
|
sl@0
|
50 |
// Uncomment if long long is available
|
sl@0
|
51 |
// # define _STLP_LONG_LONG long long
|
sl@0
|
52 |
|
sl@0
|
53 |
// Uncomment if long double is not available
|
sl@0
|
54 |
// # define _STLP_NO_LONG_DOUBLE 1
|
sl@0
|
55 |
|
sl@0
|
56 |
// Uncomment this if your compiler does not support "typename" keyword
|
sl@0
|
57 |
// # define _STLP_NEED_TYPENAME 1
|
sl@0
|
58 |
|
sl@0
|
59 |
// Uncomment this if your compiler does not support "mutable" keyword
|
sl@0
|
60 |
// # define _STLP_NEED_MUTABLE 1
|
sl@0
|
61 |
|
sl@0
|
62 |
// Uncomment this if your compiler does not support "explicit" keyword
|
sl@0
|
63 |
// # define _STLP_NEED_EXPLICIT 1
|
sl@0
|
64 |
|
sl@0
|
65 |
// Uncomment if new-style-casts like const_cast<> are not available
|
sl@0
|
66 |
// # define _STLP_NO_NEW_STYLE_CASTS 1
|
sl@0
|
67 |
|
sl@0
|
68 |
// Uncomment this if your compiler does not have "bool" type
|
sl@0
|
69 |
// # define _STLP_NO_BOOL 1
|
sl@0
|
70 |
|
sl@0
|
71 |
// Uncomment this if your compiler does not have "bool" type, but has "bool" keyword reserved
|
sl@0
|
72 |
// # define _STLP_DONT_USE_BOOL_TYPEDEF 1
|
sl@0
|
73 |
|
sl@0
|
74 |
// Uncomment this if your compiler does not have "bool" type, but defines "bool" in <yvals.h>
|
sl@0
|
75 |
// # define _STLP_YVALS_H 1
|
sl@0
|
76 |
|
sl@0
|
77 |
// Uncomment this if your compiler has limited or no default template arguments for classes
|
sl@0
|
78 |
// # define _STLP_LIMITED_DEFAULT_TEMPLATES 1
|
sl@0
|
79 |
|
sl@0
|
80 |
// Uncomment this if your compiler support only complete (not dependent on other parameters)
|
sl@0
|
81 |
// types as default parameters for class templates
|
sl@0
|
82 |
// # define _STLP_DEFAULT_TYPE_PARAM 1
|
sl@0
|
83 |
|
sl@0
|
84 |
// Uncomment this if your compiler has problem with not-type
|
sl@0
|
85 |
// default template parameters
|
sl@0
|
86 |
// # define _STLP_NO_DEFAULT_NON_TYPE_PARAM 1
|
sl@0
|
87 |
|
sl@0
|
88 |
// Define if compiler has
|
sl@0
|
89 |
// trouble with functions getting non-type-parameterized classes as parameters
|
sl@0
|
90 |
// # define _STLP_NON_TYPE_TMPL_PARAM_BUG 1
|
sl@0
|
91 |
|
sl@0
|
92 |
// Uncomment this if your compiler lacks static data members.
|
sl@0
|
93 |
// Uncomment next line if your compiler supports __attribute__((weak))
|
sl@0
|
94 |
// # define _STLP_NO_STATIC_TEMPLATE_DATA 1
|
sl@0
|
95 |
// # define _STLP_WEAK_ATTRIBUTE 1
|
sl@0
|
96 |
|
sl@0
|
97 |
// Uncomment this if your compiler does not support namespaces
|
sl@0
|
98 |
// # define _STLP_HAS_NO_NAMESPACES 1
|
sl@0
|
99 |
|
sl@0
|
100 |
// Uncomment if "using" keyword does not work with template types
|
sl@0
|
101 |
// # define _STLP_BROKEN_USING_DIRECTIVE 1
|
sl@0
|
102 |
|
sl@0
|
103 |
// Uncomment this if your compiler does not support exceptions
|
sl@0
|
104 |
// # define _STLP_HAS_NO_EXCEPTIONS 1
|
sl@0
|
105 |
|
sl@0
|
106 |
// Uncomment this if your compiler does not support exception specifications
|
sl@0
|
107 |
// # define _STLP_NO_EXCEPTION_SPEC
|
sl@0
|
108 |
|
sl@0
|
109 |
// Define this if your compiler requires return statement after throw()
|
sl@0
|
110 |
// # define _STLP_THROW_RETURN_BUG 1
|
sl@0
|
111 |
|
sl@0
|
112 |
// Define this if your compiler do not support return of void
|
sl@0
|
113 |
// # define _STLP_DONT_RETURN_VOID 1
|
sl@0
|
114 |
|
sl@0
|
115 |
// Header <new> that comes with the compiler
|
sl@0
|
116 |
// does not define bad_alloc exception
|
sl@0
|
117 |
// # define _STLP_NO_BAD_ALLOC 1
|
sl@0
|
118 |
|
sl@0
|
119 |
// Define this if your compiler do not throw bad_alloc from the new operator
|
sl@0
|
120 |
// # define _STLP_NEW_DONT_THROW 1
|
sl@0
|
121 |
|
sl@0
|
122 |
// Uncomment if member template methods are not available
|
sl@0
|
123 |
// # define _STLP_NO_MEMBER_TEMPLATES 1
|
sl@0
|
124 |
|
sl@0
|
125 |
// Uncomment if member template classes are not available
|
sl@0
|
126 |
// # define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
|
sl@0
|
127 |
|
sl@0
|
128 |
// Uncomment if you cannot access member template classe throught a class template parameter
|
sl@0
|
129 |
// # define _STLP_DONT_USE_NESTED_TCLASS_THROUGHT_TPARAM 1
|
sl@0
|
130 |
|
sl@0
|
131 |
// Uncomment if no "template" keyword should be used with member template classes
|
sl@0
|
132 |
// # define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
|
sl@0
|
133 |
|
sl@0
|
134 |
// Uncomment if friend member templates are not available
|
sl@0
|
135 |
// # define _STLP_NO_FRIEND_TEMPLATES 1
|
sl@0
|
136 |
|
sl@0
|
137 |
// Compiler does not accept friend declaration qualified with namespace name.
|
sl@0
|
138 |
// # define _STLP_NO_QUALIFIED_FRIENDS 1
|
sl@0
|
139 |
|
sl@0
|
140 |
// Uncomment if partial specialization is not available
|
sl@0
|
141 |
// # define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
|
sl@0
|
142 |
|
sl@0
|
143 |
// Define if class being partially specialized require full name (template parameters)
|
sl@0
|
144 |
// of itself for method declarations
|
sl@0
|
145 |
// # define _STLP_PARTIAL_SPEC_NEEDS_TEMPLATE_ARGS
|
sl@0
|
146 |
|
sl@0
|
147 |
// Compiler has problems specializing members of partially
|
sl@0
|
148 |
// specialized class
|
sl@0
|
149 |
// # define _STLP_MEMBER_SPECIALIZATION_BUG
|
sl@0
|
150 |
|
sl@0
|
151 |
// Uncomment if partial order of template functions is not available
|
sl@0
|
152 |
// # define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
|
sl@0
|
153 |
|
sl@0
|
154 |
// Uncomment if specialization of methods is not allowed
|
sl@0
|
155 |
// # define _STLP_NO_METHOD_SPECIALIZATION 1
|
sl@0
|
156 |
|
sl@0
|
157 |
// Uncomment if full specialization does not use partial spec. syntax : template <> struct ....
|
sl@0
|
158 |
// # define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
|
sl@0
|
159 |
|
sl@0
|
160 |
// Uncomment if compiler does not support explicit template arguments for functions
|
sl@0
|
161 |
// # define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS
|
sl@0
|
162 |
|
sl@0
|
163 |
// Uncomment if "__typetraits is being instaniated automatically by the compiler (SGI only ?)
|
sl@0
|
164 |
// # define _STLP_AUTOMATIC_TYPE_TRAITS 1
|
sl@0
|
165 |
|
sl@0
|
166 |
// Uncomment this if your compiler can't inline while(), for()
|
sl@0
|
167 |
// # define _STLP_LOOP_INLINE_PROBLEMS 1
|
sl@0
|
168 |
|
sl@0
|
169 |
// Define if the compiler fails to match a template function argument of base
|
sl@0
|
170 |
// # define _STLP_BASE_MATCH_BUG 1
|
sl@0
|
171 |
|
sl@0
|
172 |
// Define if the compiler fails to match a template function argument of base
|
sl@0
|
173 |
// (non-template)
|
sl@0
|
174 |
//# define _STLP_NONTEMPL_BASE_MATCH_BUG 1
|
sl@0
|
175 |
|
sl@0
|
176 |
// Define if the compiler rejects outline method definition
|
sl@0
|
177 |
// explicitly taking nested types/typedefs
|
sl@0
|
178 |
// # define _STLP_NESTED_TYPE_PARAM_BUG 1
|
sl@0
|
179 |
|
sl@0
|
180 |
// Compiler requires typename keyword on outline method definition
|
sl@0
|
181 |
// explicitly taking nested types/typedefs
|
sl@0
|
182 |
// #define _STLP_TYPENAME_ON_RETURN_TYPE
|
sl@0
|
183 |
|
sl@0
|
184 |
// Define if the baseclass typedefs not visible from outside
|
sl@0
|
185 |
// # define _STLP_BASE_TYPEDEF_OUTSIDE_BUG 1
|
sl@0
|
186 |
|
sl@0
|
187 |
// if your compiler have serious problems with typedefs, try this one
|
sl@0
|
188 |
// # define _STLP_BASE_TYPEDEF_BUG 1
|
sl@0
|
189 |
|
sl@0
|
190 |
// Uncomment if getting errors compiling mem_fun* adaptors
|
sl@0
|
191 |
// # define _STLP_MEMBER_POINTER_PARAM_BUG 1
|
sl@0
|
192 |
|
sl@0
|
193 |
// # define _STLP_UNINITIALIZABLE_PRIVATE 1
|
sl@0
|
194 |
|
sl@0
|
195 |
// Defined if the compiler
|
sl@0
|
196 |
// has trouble instantiating static array members with dimension defined as enum
|
sl@0
|
197 |
// # define _STLP_STATIC_ARRAY_BUG
|
sl@0
|
198 |
|
sl@0
|
199 |
// * _STLP_STATIC_CONST_INIT_BUG: defined if the compiler can't handle a
|
sl@0
|
200 |
// constant-initializer in the declaration of a static const data member
|
sl@0
|
201 |
// of integer type. (See section 9.4.2, paragraph 4, of the C++ standard.)
|
sl@0
|
202 |
// # define _STLP_STATIC_CONST_INIT_BUG
|
sl@0
|
203 |
|
sl@0
|
204 |
// Define if default constructor for builtin integer type fails to initialize it to 0
|
sl@0
|
205 |
// # define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
|
sl@0
|
206 |
|
sl@0
|
207 |
// Defined if constructor
|
sl@0
|
208 |
// required to explicitly call member's default constructors for const objects
|
sl@0
|
209 |
// # define _STLP_CONST_CONSTRUCTOR_BUG 1
|
sl@0
|
210 |
|
sl@0
|
211 |
// Defined if the compiler has trouble calling POD-types constructors/destructors
|
sl@0
|
212 |
// # define _STLP_TRIVIAL_CONSTRUCTOR_BUG 1
|
sl@0
|
213 |
// # define _STLP_TRIVIAL_DESTRUCTOR_BUG 1
|
sl@0
|
214 |
|
sl@0
|
215 |
// Define if having problems specializing maps/sets with
|
sl@0
|
216 |
// key type being const
|
sl@0
|
217 |
// # define _STLP_MULTI_CONST_TEMPLATE_ARG_BUG
|
sl@0
|
218 |
|
sl@0
|
219 |
// Uncomment this to disable -> operators on all iterators
|
sl@0
|
220 |
// # define _STLP_NO_ARROW_OPERATOR 1
|
sl@0
|
221 |
|
sl@0
|
222 |
// Uncomment this to disble at() member functions for containers
|
sl@0
|
223 |
// # define _STLP_NO_AT_MEMBER_FUNCTION 1
|
sl@0
|
224 |
|
sl@0
|
225 |
// Uncomment if native new-style iostreams are not available
|
sl@0
|
226 |
// #define _STLP_HAS_NO_NEW_IOSTREAMS 1
|
sl@0
|
227 |
|
sl@0
|
228 |
// Define this if compiler lacks <exception> header
|
sl@0
|
229 |
// # define _STLP_NO_EXCEPTION_HEADER 1
|
sl@0
|
230 |
|
sl@0
|
231 |
// Uncomment this if your C library has lrand48() function
|
sl@0
|
232 |
// # define _STLP_RAND48 1
|
sl@0
|
233 |
|
sl@0
|
234 |
// Uncomment if native new-style C library headers lile <cstddef>, etc are not available.
|
sl@0
|
235 |
// # define _STLP_HAS_NO_NEW_C_HEADERS 1
|
sl@0
|
236 |
|
sl@0
|
237 |
// uncomment if new-style headers <new> is available
|
sl@0
|
238 |
// # define _STLP_HAS_NEW_NEW_HEADER 1
|
sl@0
|
239 |
|
sl@0
|
240 |
// uncomment this if <iostream> and other STD headers put their stuff in ::namespace,
|
sl@0
|
241 |
// not std::
|
sl@0
|
242 |
// # define _STLP_VENDOR_GLOBAL_STD
|
sl@0
|
243 |
|
sl@0
|
244 |
// uncomment this if <cstdio> and the like put stuff in ::namespace,
|
sl@0
|
245 |
// not std::
|
sl@0
|
246 |
// # define _STLP_VENDOR_GLOBAL_CSTD
|
sl@0
|
247 |
|
sl@0
|
248 |
// Edit relative path below (or put full path) to get native
|
sl@0
|
249 |
// compiler headers included. Default is "../include".
|
sl@0
|
250 |
// C headers may reside in different directory, so separate macro is provided.
|
sl@0
|
251 |
// Hint : never install STLport in the directory that ends with "include"
|
sl@0
|
252 |
// # define _STLP_NATIVE_INCLUDE_PATH ../include
|
sl@0
|
253 |
// # define _STLP_NATIVE_C_INCLUDE_PATH ../include
|
sl@0
|
254 |
// # define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
|
sl@0
|
255 |
|
sl@0
|
256 |
// This macro constructs header path from directory and name.
|
sl@0
|
257 |
// You may change it if your compiler does not understand "/".
|
sl@0
|
258 |
// # define _STLP_MAKE_HEADER(path, header) <path/header>
|
sl@0
|
259 |
|
sl@0
|
260 |
// This macro constructs native include header path from include path and name.
|
sl@0
|
261 |
// You may have do define it if experirncing problems with preprocessor
|
sl@0
|
262 |
// # define _STLP_NATIVE_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header)
|
sl@0
|
263 |
|
sl@0
|
264 |
// Same for C headers
|
sl@0
|
265 |
// #define _STLP_NATIVE_C_HEADER(header)
|
sl@0
|
266 |
|
sl@0
|
267 |
//==========================================================
|
sl@0
|
268 |
# endif
|