* Cross-allocator copying constructor and copy assignment operator for concurrent_vector are deprecated. * Added input_node to the flow graph API. It acts like a source_node except for being inactive by default; source_node is deprecated. * Allocator template parameter for flow graph nodes is deprecated. Set TBB_DEPRECATED_FLOW_NODE_ALLOCATOR to 1 to avoid compilation errors. * Flow graph preview hetero-features are deprecated. * Fixed the task affinity mechanism to prevent unlimited memory consumption in case the number of threads is explicitly decreased. * Fixed memory leak related NUMA support functionality in task_arena. OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=64
14 lines
803 B
Diff
14 lines
803 B
Diff
Index: oneTBB-2020.2/cmake/templates/TBBConfigInternal.cmake.in
|
|
===================================================================
|
|
--- oneTBB-2020.2.orig/cmake/templates/TBBConfigInternal.cmake.in
|
|
+++ oneTBB-2020.2/cmake/templates/TBBConfigInternal.cmake.in
|
|
@@ -57,8 +57,6 @@ foreach (_tbb_component ${TBB_FIND_COMPO
|
|
if (EXISTS "${_tbb_release_lib}" OR EXISTS "${_tbb_debug_lib}")
|
|
if (NOT TARGET TBB::${_tbb_component})
|
|
add_library(TBB::${_tbb_component} SHARED IMPORTED)
|
|
- set_target_properties(TBB::${_tbb_component} PROPERTIES
|
|
- INTERFACE_INCLUDE_DIRECTORIES "${_tbb_root}/include"@TBB_COMPILE_DEFINITIONS@)
|
|
|
|
if (EXISTS "${_tbb_release_lib}")
|
|
set_target_properties(TBB::${_tbb_component} PROPERTIES
|