aboutsummaryrefslogtreecommitdiff
path: root/stlport/stl/config/_intel.h
blob: 01e09d60f20dd39ed65c7c75f601c794e0ec9c72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// STLport configuration file
// It is internal STLport header - DO NOT include it directly

#define _STLP_COMPILER "Intel ICL"

#define _STLP_IMPORT_TEMPLATE_KEYWORD extern

/* You need to undef following macro if your icl install is binded to MSVC 6
 * native lib and you are building with /Qvc7 or /Qvc7.1 or /Qvc8 option.
 */
/* #define _STLP_MSVC_LIB 1200 */
/* You need to undef following macro if your icl install is binded to MSVC .Net 2002
 * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7.1
 * or /Qvc8 option.
 */
/* #define _STLP_MSVC_LIB 1300 */
/* You need to undef following macro if your icl install is binded to MSVC .Net 2003
 * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7
 * or /Qvc8 option.
 */
/* #define _STLP_MSVC_LIB 1310 */
/* You need to undef following macro if your icl install is binded to MSVC 2005
 * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7
 * or /Qvc7.1 option.
 */
/* #define _STLP_MSVC_LIB 1400 */

#include <stl/config/_msvc.h>

#if defined (_STLP_DONT_RETURN_VOID)
#  undef _STLP_DONT_RETURN_VOID
#endif

#if (__ICL < 900)
#  define _STLP_NOTHROW
#endif

#if (__ICL <= 810)
/* If method specialization is activated, compiler do not export some
 * symbols anymore.
 */
#  define _STLP_NO_METHOD_SPECIALIZATION 1
#endif

#if (__ICL >= 800 && __ICL < 900)
#  define _STLP_STATIC_CONST_INIT_BUG 1
#endif

#if (__ICL >= 450)
#  define _STLP_DLLEXPORT_NEEDS_PREDECLARATION 1
#endif

#if (__ICL < 450)
/*    only static STLport lib works for ICL */
#  undef  _STLP_USE_STATIC_LIB
#  undef  _STLP_USE_DYNAMIC_LIB
#  define _STLP_USE_STATIC_LIB
/*    disable hook which makes template symbols to be searched for in the library */
#  undef _STLP_NO_CUSTOM_IO
#endif

#undef  _STLP_LONG_LONG
#define _STLP_LONG_LONG long long

#if defined (__cplusplus) && (__ICL >= 900) && (_STLP_MSVC_LIB < 1300)
namespace std
{
  void _STLP_CALL unexpected();
}
#endif

#include <stl/config/_feedback.h>