_intel.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // STLport configuration file
  2. // It is internal STLport header - DO NOT include it directly
  3. #define _STLP_COMPILER "Intel ICL"
  4. #define _STLP_IMPORT_TEMPLATE_KEYWORD extern
  5. /* You need to undef following macro if your icl install is binded to MSVC 6
  6. * native lib and you are building with /Qvc7 or /Qvc7.1 or /Qvc8 option.
  7. */
  8. /* #define _STLP_MSVC_LIB 1200 */
  9. /* You need to undef following macro if your icl install is binded to MSVC .Net 2002
  10. * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7.1
  11. * or /Qvc8 option.
  12. */
  13. /* #define _STLP_MSVC_LIB 1300 */
  14. /* You need to undef following macro if your icl install is binded to MSVC .Net 2003
  15. * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7
  16. * or /Qvc8 option.
  17. */
  18. /* #define _STLP_MSVC_LIB 1310 */
  19. /* You need to undef following macro if your icl install is binded to MSVC 2005
  20. * native lib and you are building without any /Qvc* option or with /Qvc6 or /Qvc7
  21. * or /Qvc7.1 option.
  22. */
  23. /* #define _STLP_MSVC_LIB 1400 */
  24. #include <stl/config/_msvc.h>
  25. #if defined (_STLP_DONT_RETURN_VOID)
  26. # undef _STLP_DONT_RETURN_VOID
  27. #endif
  28. #if (__ICL < 900)
  29. # define _STLP_NOTHROW
  30. #endif
  31. #if (__ICL <= 810)
  32. /* If method specialization is activated, compiler do not export some
  33. * symbols anymore.
  34. */
  35. # define _STLP_NO_METHOD_SPECIALIZATION 1
  36. #endif
  37. #if (__ICL >= 800 && __ICL < 900)
  38. # define _STLP_STATIC_CONST_INIT_BUG 1
  39. #endif
  40. #if (__ICL >= 450)
  41. # define _STLP_DLLEXPORT_NEEDS_PREDECLARATION 1
  42. #endif
  43. #if (__ICL < 450)
  44. /* only static STLport lib works for ICL */
  45. # undef _STLP_USE_STATIC_LIB
  46. # undef _STLP_USE_DYNAMIC_LIB
  47. # define _STLP_USE_STATIC_LIB
  48. /* disable hook which makes template symbols to be searched for in the library */
  49. # undef _STLP_NO_CUSTOM_IO
  50. #endif
  51. #undef _STLP_LONG_LONG
  52. #define _STLP_LONG_LONG long long
  53. #if defined (__cplusplus) && (__ICL >= 900) && (_STLP_MSVC_LIB < 1300)
  54. namespace std
  55. {
  56. void _STLP_CALL unexpected();
  57. }
  58. #endif
  59. #include <stl/config/_feedback.h>