00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __TBB_tbb_config_H
00022 #define __TBB_tbb_config_H
00023
00033 #ifndef TBB_USE_DEBUG
00034 #ifdef TBB_DO_ASSERT
00035 #define TBB_USE_DEBUG TBB_DO_ASSERT
00036 #else
00037 #define TBB_USE_DEBUG 0
00038 #endif
00039 #else
00040 #define TBB_DO_ASSERT TBB_USE_DEBUG
00041 #endif
00042
00043 #ifndef TBB_USE_ASSERT
00044 #ifdef TBB_DO_ASSERT
00045 #define TBB_USE_ASSERT TBB_DO_ASSERT
00046 #else
00047 #define TBB_USE_ASSERT TBB_USE_DEBUG
00048 #endif
00049 #endif
00050
00051 #ifndef TBB_USE_THREADING_TOOLS
00052 #ifdef TBB_DO_THREADING_TOOLS
00053 #define TBB_USE_THREADING_TOOLS TBB_DO_THREADING_TOOLS
00054 #else
00055 #define TBB_USE_THREADING_TOOLS TBB_USE_DEBUG
00056 #endif
00057 #endif
00058
00059 #ifndef TBB_USE_PERFORMANCE_WARNINGS
00060 #ifdef TBB_PERFORMANCE_WARNINGS
00061 #define TBB_USE_PERFORMANCE_WARNINGS TBB_PERFORMANCE_WARNINGS
00062 #else
00063 #define TBB_USE_PERFORMANCE_WARNINGS TBB_USE_DEBUG
00064 #endif
00065 #endif
00066
00067 #if !defined(__EXCEPTIONS) && !defined(_CPPUNWIND) && !defined(__SUNPRO_CC) || defined(_XBOX)
00068 #if TBB_USE_EXCEPTIONS
00069 #error Compilation settings do not support exception handling. Please do not set TBB_USE_EXCEPTIONS macro or set it to 0.
00070 #elif !defined(TBB_USE_EXCEPTIONS)
00071 #define TBB_USE_EXCEPTIONS 0
00072 #endif
00073 #elif !defined(TBB_USE_EXCEPTIONS)
00074 #define TBB_USE_EXCEPTIONS 1
00075 #endif
00076
00077 #ifndef TBB_IMPLEMENT_CPP0X
00078
00079 #if __GNUC__==4 && __GNUC_MINOR__>=4 && __GXX_EXPERIMENTAL_CXX0X__
00080 #define TBB_IMPLEMENT_CPP0X 0
00081 #else
00082 #define TBB_IMPLEMENT_CPP0X 1
00083 #endif
00084 #endif
00085
00088 #ifndef __TBB_COUNT_TASK_NODES
00089 #define __TBB_COUNT_TASK_NODES TBB_USE_ASSERT
00090 #endif
00091
00092 #ifndef __TBB_TASK_GROUP_CONTEXT
00093 #define __TBB_TASK_GROUP_CONTEXT 1
00094 #endif
00095
00096 #ifndef __TBB_SCHEDULER_OBSERVER
00097 #define __TBB_SCHEDULER_OBSERVER 1
00098 #endif
00099
00100 #ifndef __TBB_ARENA_PER_MASTER
00101 #define __TBB_ARENA_PER_MASTER 1
00102 #endif
00103
00104
00105
00106 #define __TBB_EXCEPTION_PTR_PRESENT (_MSC_VER >= 1600 || __GXX_EXPERIMENTAL_CXX0X__ && (__GNUC__==4 && __GNUC_MINOR__>=4))
00107
00108
00109 #ifndef TBB_USE_CAPTURED_EXCEPTION
00110 #if __TBB_EXCEPTION_PTR_PRESENT
00111 #define TBB_USE_CAPTURED_EXCEPTION 0
00112 #else
00113 #define TBB_USE_CAPTURED_EXCEPTION 1
00114 #endif
00115 #else
00116 #if !TBB_USE_CAPTURED_EXCEPTION && !__TBB_EXCEPTION_PTR_PRESENT
00117 #error Current runtime does not support std::exception_ptr. Set TBB_USE_CAPTURED_EXCEPTION and make sure that your code is ready to catch tbb::captured_exception.
00118 #endif
00119 #endif
00120
00121
00122 #ifndef __TBB_DEFAULT_PARTITIONER
00123 #if TBB_DEPRECATED
00124
00125 #define __TBB_DEFAULT_PARTITIONER tbb::simple_partitioner
00126 #else
00127
00128 #define __TBB_DEFAULT_PARTITIONER tbb::auto_partitioner
00129 #endif
00130 #endif
00131
00134 #if __GNUC__==4 && __GNUC_MINOR__>=4 && !defined(__INTEL_COMPILER)
00135 #define __TBB_GCC_WARNING_SUPPRESSION_ENABLED 1
00136 #endif
00137
00144 #if _MSC_VER && __INTEL_COMPILER && (__INTEL_COMPILER<1110 || __INTEL_COMPILER==1110 && __INTEL_COMPILER_BUILD_DATE < 20091012)
00145
00148 #define __TBB_DEFAULT_DTOR_THROW_SPEC_BROKEN 1
00149 #endif
00150
00151 #if defined(_MSC_VER) && _MSC_VER < 1500 && !defined(__INTEL_COMPILER)
00152
00154 #define __TBB_TEMPLATE_FRIENDS_BROKEN 1
00155 #endif
00156
00157 #if __GLIBC__==2 && __GLIBC_MINOR__==3 || __MINGW32__
00159
00160 #define __TBB_THROW_ACROSS_MODULE_BOUNDARY_BROKEN 1
00161 #endif
00162
00163 #if (_WIN32||_WIN64) && __INTEL_COMPILER == 1110
00164
00165 #define __TBB_ICL_11_1_CODE_GEN_BROKEN 1
00166 #endif
00167
00168 #if __GNUC__==3 && __GNUC_MINOR__==3 && !defined(__INTEL_COMPILER)
00169
00170 #define __TBB_GCC_3_3_PROTECTED_BROKEN 1
00171 #endif
00172
00173 #if __MINGW32__ && (__GNUC__<4 || __GNUC__==4 && __GNUC_MINOR__<2)
00174
00176 #define __TBB_SSE_STACK_ALIGNMENT_BROKEN 1
00177 #endif
00178
00179 #if __FreeBSD__
00180
00182 #define __TBB_PRIO_INHERIT_BROKEN 1
00183
00186 #define __TBB_PLACEMENT_NEW_EXCEPTION_SAFETY_BROKEN 1
00187 #endif
00188
00189 #if (__linux__ || __APPLE__) && __i386__ && defined(__INTEL_COMPILER)
00190
00192 #define __TBB_ICC_ASM_VOLATILE_BROKEN 1
00193 #endif
00194
00195
00196 #endif