epoc32/include/tools/stlport/stl/config/_msvc.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files
     1 /* STLport configuration file
     2  * It is internal STLport header - DO NOT include it directly
     3  * Microsoft Visual C++ 6.0, 7.0, 7.1, 8.0, ICL
     4  */
     5 
     6 #if !defined (_STLP_COMPILER)
     7 #  define _STLP_COMPILER "Microsoft Visual Studio C++"
     8 #endif
     9 
    10 #if !defined (__ICL) && !defined (_STLP_MSVC)
    11 #  define _STLP_MSVC _MSC_VER
    12 #endif
    13 
    14 #if !defined (_STLP_MSVC_LIB)
    15 #  define _STLP_MSVC_LIB _MSC_VER
    16 #endif
    17 
    18 #if defined (__BUILDING_STLPORT) && defined (_MANAGED)
    19 /* Building a managed version of STLport is not supported because we haven't
    20  * found a good reason to support it. However, building a managed translation
    21  * unit using STLport _is_ supported.
    22  */
    23 #  error Sorry but building a managed version of STLport is not supported.
    24 #endif
    25 
    26 #if defined (_STLP_USING_PLATFORM_SDK_COMPILER)
    27 /* This is a specific section for compilers coming with platform SDKs. Native
    28  * library coming with it is different from the one coming with commercial
    29  * MSVC compilers so there is some specific settings.
    30  */
    31 #  define _STLP_NATIVE_INCLUDE_PATH ../crt
    32 #  define _STLP_VENDOR_GLOBAL_CSTD
    33 #  define _STLP_VENDOR_TERMINATE_STD
    34 #  define _STLP_GLOBAL_NEW_HANDLER
    35 #  if (_STLP_MSVC_LIB <= 1400)
    36 /* We hope this bug will be fixed in future versions. */
    37 #    define _STLP_NEW_DONT_THROW_BAD_ALLOC 1
    38 #  endif
    39 #endif
    40 
    41 #define _STLP_CALL __cdecl
    42 
    43 #ifndef _STLP_LONG_LONG
    44 #  define _STLP_LONG_LONG __int64
    45 #endif
    46 
    47 #define _STLP_PRAGMA_ONCE
    48 
    49 /* These switches depend on compiler flags. We are hoping here that compilers
    50  * simulating MSVC behavior use identical macros to report compilation context.
    51  * Otherwise those macros will have to be undef in specific compiler configuration
    52  * files.
    53  */
    54 #ifndef _CPPUNWIND
    55 #  define _STLP_DONT_USE_EXCEPTIONS 1
    56 #endif
    57 
    58 #ifndef _CPPRTTI
    59 #  define _STLP_NO_RTTI 1
    60 #endif
    61 
    62 #if defined (_MT) && !defined (_STLP_NO_THREADS) && !defined (_REENTRANT)
    63 #  define _REENTRANT 1
    64 #endif
    65 
    66 #if !defined (_NATIVE_WCHAR_T_DEFINED)
    67 #  define _STLP_WCHAR_T_IS_USHORT 1
    68 #endif
    69 
    70 #define _STLP_MINIMUM_IMPORT_STD
    71 #define _STLP_NO_VENDOR_STDLIB_L 1
    72 
    73 #if defined (_STLP_MSVC)
    74 
    75 #define _STLP_NORETURN_FUNCTION __declspec(noreturn)
    76 
    77 /* Full compiler version comes from boost library intrinsics.hpp header. */
    78 #  if defined (_MSC_FULL_VER) && (_MSC_FULL_VER >= 140050215)
    79 #    define _STLP_HAS_TRIVIAL_CONSTRUCTOR(T) __has_trivial_constructor(T)
    80 #    define _STLP_HAS_TRIVIAL_COPY(T) __has_trivial_copy(T)
    81 #    define _STLP_HAS_TRIVIAL_ASSIGN(T) __has_trivial_assign(T)
    82 #    define _STLP_HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T)
    83 #    define _STLP_IS_POD(T) __is_pod(T)
    84 #    define _STLP_HAS_TYPE_TRAITS_INTRINSICS
    85 #  endif
    86 
    87 #  ifndef _STLP_MSVC50_COMPATIBILITY
    88 #    define _STLP_MSVC50_COMPATIBILITY   1
    89 #  endif
    90 
    91 #  define _STLP_DLLEXPORT_NEEDS_PREDECLARATION 1
    92 #  define _STLP_HAS_SPECIFIC_PROLOG_EPILOG 1
    93 
    94 /* # ifndef __BUILDING_STLPORT
    95  * #  define _STLP_USE_TEMPLATE_EXPORT 1
    96  * # endif
    97  */
    98 #  if (_STLP_MSVC <= 1400)
    99 #    define _STLP_STATIC_CONST_INIT_BUG   1
   100 #  endif
   101 
   102 /** Note: the macro _STLP_NO_UNCAUGHT_EXCEPT_SUPPORT is defined
   103 unconditionally and undef'ed here when applicable. */
   104 #  if defined(UNDER_CE)
   105 /* eVCx:
   106 uncaught_exception is declared in the SDKs delivered with eVC4 (eVC3 is
   107 unknown) and they all reside in namespace 'std' there. However, they are not
   108 part of any lib so linking fails. When using VC8 to crosscompile for CE 5 on
   109 an ARMV4I, the uncaught_exception test fails, the function returns the wrong
   110 value. */
   111 #  else
   112 /* VCx:
   113 These are present at least since VC6, but the uncaught_exception() of VC6 is
   114 broken, it returns the wrong value in the unittests. 7.1 and later seem to
   115 work, 7.0 is still unknown (we assume it works until negative report). */
   116 #    if (_STLP_MSVC >= 1300)// VC7 and later
   117 #      undef _STLP_NO_UNCAUGHT_EXCEPT_SUPPORT
   118 #      if !defined (_STLP_DONT_USE_EXCEPTIONS)
   119 #        define _STLP_NOTHROW throw()
   120 #      endif
   121 #    endif
   122 #  endif
   123 
   124 #  if (_STLP_MSVC <= 1300)
   125 #    define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
   126 #    define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
   127 /* There is no partial spec, and MSVC breaks on simulating it for iterator_traits queries */
   128 #    define _STLP_USE_OLD_HP_ITERATOR_QUERIES
   129 #    define _STLP_NO_TYPENAME_IN_TEMPLATE_HEADER
   130 #    define _STLP_NO_METHOD_SPECIALIZATION 1
   131 #    define _STLP_DEF_CONST_PLCT_NEW_BUG 1
   132 #    define _STLP_NO_TYPENAME_ON_RETURN_TYPE 1
   133 /* VC++ cannot handle default allocator argument in template constructors */
   134 #    define _STLP_NEEDS_EXTRA_TEMPLATE_CONSTRUCTORS
   135 #    define _STLP_NO_QUALIFIED_FRIENDS    1
   136 #    define _STLP_NO_FRIEND_TEMPLATES
   137 /* Fails to properly resolve call to sin() from within sin() */
   138 #  endif
   139 
   140 #  if (_STLP_MSVC < 1300)
   141 #    define _STLP_NO_IEC559_SUPPORT 1
   142 #  endif
   143 
   144 #  if (_STLP_MSVC < 1300) /* including MSVC 6.0 */
   145 /* These work, as long they are inline */
   146 #    define _STLP_INLINE_MEMBER_TEMPLATES 1
   147 #    define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
   148 #    define _STLP_DONT_SUPPORT_REBIND_MEMBER_TEMPLATE 1
   149 #  endif
   150 
   151 #  if (_STLP_MSVC >= 1200)
   152 #    define _STLP_HAS_NATIVE_FLOAT_ABS 1
   153 #  endif
   154 
   155 // TODO: some eVC4 compilers report _MSC_VER 1201 or 1202, which category do they belong to?
   156 #  if (_STLP_MSVC > 1200) && (_STLP_MSVC < 1310)
   157 #    define _STLP_NO_MOVE_SEMANTIC
   158 #  endif
   159 
   160 #  if (_STLP_MSVC < 1300)
   161 /* TODO: remove this if it is handled and documented elsewhere
   162  * dums: VC6 do not handle correctly member templates of class that are explicitely
   163  * instanciated to be exported. There is a workaround, seperate the non template methods
   164  * from the template ones within 2 different classes and only export the non template one.
   165  * It is implemented for basic_string and locale at the writing of this note.
   166  * However this problem hos not  been considered as important enough to remove template member
   167  * methods for other classes. Moreover Boost (www.boost.org) required it to be granted.
   168  * The workaround is activated thanks to the _STLP_USE_MSVC6_MEM_T_BUG_WORKAROUND macro defined
   169  * later in this config file.
   170  */
   171 /*
   172 #    if defined (_DLL)
   173 #      define _STLP_NO_MEMBER_TEMPLATES 1
   174 #    endif
   175 */
   176 
   177 /* Boris : not defining this macro for SP5 causes other problems */
   178 /*#    if !defined (_MSC_FULL_VER) || (_MSC_FULL_VER < 12008804 ) */
   179 #    define _STLP_NO_USING_FOR_GLOBAL_FUNCTIONS 1
   180 /*#    endif */
   181 #    define _STLP_DONT_USE_BOOL_TYPEDEF 1
   182 #    define _STLP_DONT_RETURN_VOID 1
   183 #  endif
   184 
   185 /*
   186  * MSVC6 is known to have many trouble with namespace management but
   187  * MSVC .Net 2003 and 2005 also have a bug difficult to reproduce without
   188  * STLport:
   189  * namespace stlp_std {
   190  *   typedef int foo_int;
   191  * }
   192  * #include <map>
   193  * const foo_int bar = 0;
   194  *
   195  * As you can see foo is available without namespace specification as if
   196  * a using namespace stlp_std has been performed. Defining _STLP_USING_NAMESPACE_BUG
   197  * restore the expected compilation error.
   198  */
   199 #  define _STLP_USING_NAMESPACE_BUG 1
   200 
   201 #  if (_STLP_MSVC < 1300) /* MSVC 6.0 and earlier */
   202 /* defined for DEBUG and NDEBUG too, to allow user mix own debug build with STLP release library */
   203 #    define _STLP_USE_ABBREVS
   204 #  endif
   205 
   206 // TODO: what is the earliest version for this? If it is 1200, use _STLP_MSVC>=1200.
   207 #  if (_STLP_MSVC > 1100) && (_STLP_MSVC < 1300)
   208 typedef char __stl_char;
   209 #    define _STLP_DEFAULTCHAR __stl_char
   210 #  endif
   211 
   212 #  if (_STLP_MSVC < 1200) /* before VC++ 6.0 */
   213 /* #  define _STLP_NO_MEMBER_TEMPLATES 1 */
   214 /* #  define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1 */
   215 #    define _STLP_DONT_SIMULATE_PARTIAL_SPEC_FOR_TYPE_TRAITS 1
   216 #    define _STLP_DONT_USE_PARTIAL_SPEC_WRKD 1
   217 #    define _STLP_QUALIFIED_SPECIALIZATION_BUG 1
   218 #    define _STLP_NON_TYPE_TMPL_PARAM_BUG 1
   219 #    define _STLP_THROW_RETURN_BUG 1
   220 #    define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
   221 #    define _STLP_DEF_CONST_DEF_PARAM_BUG 1
   222 #  endif
   223 
   224 #  if (_STLP_MSVC < 1100 )
   225 #    ifndef _STLP_USE_NO_IOSTREAMS
   226 #      define _STLP_USE_NO_IOSTREAMS
   227 #    endif
   228 /* #  define _STLP_NESTED_TYPE_PARAM_BUG 1 */
   229 /* Debug mode does not work for 4.2 */
   230 #    if defined (_STLP_DEBUG)
   231 #      pragma message ("STLport debug mode does not work for VC++ 4.2, turning _STLP_DEBUG off ...")
   232 #      undef _STLP_DEBUG
   233 #    endif
   234 #    define _STLP_NO_BOOL            1
   235 #    define _STLP_NEED_TYPENAME      1
   236 #    define _STLP_NEED_EXPLICIT      1
   237 #    define _STLP_NEED_MUTABLE       1
   238 #    define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX
   239 #    define _STLP_LIMITED_DEFAULT_TEMPLATES 1
   240 #    define _STLP_NONTEMPL_BASE_MATCH_BUG 1
   241 #    define _STLP_BROKEN_USING_DIRECTIVE  1
   242 #    define _STLP_NO_ARROW_OPERATOR 1
   243 #    define _STLP_NO_SIGNED_BUILTINS 1
   244 #    define _STLP_NO_EXCEPTION_SPEC 1
   245 #    define _STLP_HAS_NO_NAMESPACES 1
   246 #    define _STLP_NO_AT_MEMBER_FUNCTION 1
   247 #    define _STLP_NO_MEMBER_TEMPLATES 1
   248 #  endif /* 1100 */
   249 
   250 #endif /* _STLP_MSVC */
   251 
   252 /** The desktop variants starting with VC8 have a set of more secure replacements
   253 for the error-prone string handling functions of the C standard lib. */
   254 #if (_STLP_MSVC_LIB >= 1400) && !defined (_STLP_USING_PLATFORM_SDK_COMPILER) && !defined(UNDER_CE)
   255 #  define _STLP_USE_SAFE_STRING_FUNCTIONS 1
   256 #endif
   257 
   258 #if (_STLP_MSVC_LIB <= 1310)
   259 #  define _STLP_VENDOR_GLOBAL_CSTD
   260 #endif
   261 
   262 #if (_STLP_MSVC_LIB >= 1300) && !defined(UNDER_CE)
   263 /* Starting with MSVC 7.0 and compilers simulating it,
   264  * we assume that the new SDK is granted:
   265  */
   266 #  define _STLP_NEW_PLATFORM_SDK 1
   267 #endif
   268 
   269 #if (_STLP_MSVC_LIB < 1300) /* including MSVC 6.0 */
   270 #  define _STLP_GLOBAL_NEW_HANDLER 1
   271 #  define _STLP_VENDOR_UNEXPECTED_STD
   272 #  define _STLP_NEW_DONT_THROW_BAD_ALLOC 1
   273 #endif
   274 
   275 #if (_STLP_MSVC_LIB < 1100)
   276 /* up to 4.2, library is in global namespace */
   277 #  define _STLP_VENDOR_GLOBAL_STD
   278 #endif
   279 
   280 #if (_STLP_MSVC_LIB <= 1010)
   281 /* "bool" is reserved in MSVC 4.1 while <yvals.h> absent, so : */
   282 #  define _STLP_NO_BAD_ALLOC
   283 #  define _STLP_HAS_NO_NEW_C_HEADERS 1
   284 #  define _STLP_NO_NEW_NEW_HEADER 1
   285 #elif (_STLP_MSVC_LIB < 1100)
   286 /* VC++ 4.2 and higher */
   287 #  define _STLP_YVALS_H 1
   288 #  define _STLP_USE_NO_IOSTREAMS 1
   289 #endif
   290 
   291 #define _STLP_EXPORT_DECLSPEC __declspec(dllexport)
   292 #define _STLP_IMPORT_DECLSPEC __declspec(dllimport)
   293 
   294 #if !defined (_STLP_MSVC) || (_STLP_MSVC >= 1100)
   295 #  define _STLP_CLASS_EXPORT_DECLSPEC __declspec(dllexport)
   296 #  define _STLP_CLASS_IMPORT_DECLSPEC __declspec(dllimport)
   297 #endif
   298 
   299 #if defined (__DLL) || defined (_DLL) || defined (_RTLDLL) || defined (_AFXDLL)
   300 #  define _STLP_RUNTIME_DLL
   301 #endif
   302 #if defined (__BUILDING_STLPORT) && \
   303    (defined (_STLP_USE_DYNAMIC_LIB) || \
   304     defined (_STLP_RUNTIME_DLL) && !defined (_STLP_USE_STATIC_LIB))
   305 #  define _STLP_DLL
   306 #endif
   307 #include <stl/config/_detect_dll_or_lib.h>
   308 #undef _STLP_RUNTIME_DLL
   309 #undef _STLP_DLL
   310 
   311 #if defined (_STLP_USE_DYNAMIC_LIB)
   312 #  undef  _STLP_USE_DECLSPEC
   313 #  define _STLP_USE_DECLSPEC 1
   314 #  if (_STLP_MSVC >= 1200) && (_STLP_MSVC < 1300)
   315 #    define _STLP_USE_MSVC6_MEM_T_BUG_WORKAROUND 1
   316 #  endif
   317 #endif
   318 
   319 #if !defined (_STLP_IMPORT_TEMPLATE_KEYWORD)
   320 #  if !defined (_MSC_EXTENSIONS) || defined(_STLP_MSVC) && _STLP_MSVC >= 1300
   321 #    define _STLP_IMPORT_TEMPLATE_KEYWORD
   322 #  else
   323 #    define _STLP_IMPORT_TEMPLATE_KEYWORD extern
   324 #  endif
   325 #endif
   326 #define _STLP_EXPORT_TEMPLATE_KEYWORD
   327 
   328 #if defined (_STLP_MSVC) && (_STLP_MSVC < 1200)
   329 /*    only static STLport lib now works for VC 5.0 */
   330 #  undef  _STLP_USE_STATIC_LIB
   331 #  undef  _STLP_USE_DYNAMIC_LIB
   332 #  define _STLP_USE_STATIC_LIB
   333 /*    disable hook which makes template symbols to be searched for in the library */
   334 #  undef _STLP_NO_CUSTOM_IO
   335 #endif
   336 
   337 #include <stl/config/_auto_link.h>
   338 
   339 #if defined (_STLP_USING_PLATFORM_SDK_COMPILER)
   340 /* The Windows 64 bits SDK required for the moment link to bufferoverflowU.lib for
   341  * additional buffer overrun checks. Rather than require the STLport build system and
   342  * users to explicitely link with it we use the MSVC auto link feature.
   343  */
   344 #  if !defined (_STLP_DONT_USE_AUTO_LINK) || defined (__BUILDING_STLPORT)
   345 #    pragma comment (lib, "bufferoverflowU.lib")
   346 #    if defined (_STLP_VERBOSE_AUTO_LINK)
   347 #      pragma message ("STLport: Auto linking to bufferoverflowU.lib")
   348 #    endif
   349 #  endif
   350 #endif
   351 
   352 /* Local Variables:
   353  * mode:C++
   354  * End:
   355  */