bc6eb862be
When tbb is built in Debug mode, it installs libtbb_debug.so instead of libtbb.so. This confuses downstream packages that want to link with it (e.g. sysdig). Always build in Release mode. This means that BR2_ENABLE_RUNTIME_DEBUG has no effect for this package, but that shouldn't be a bi issue. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
21 lines
515 B
Makefile
21 lines
515 B
Makefile
################################################################################
|
|
#
|
|
# tbb
|
|
#
|
|
################################################################################
|
|
|
|
TBB_VERSION = 2021.5.0
|
|
TBB_SITE = $(call github,01org,tbb,v$(TBB_VERSION))
|
|
TBB_INSTALL_STAGING = YES
|
|
TBB_LICENSE = Apache-2.0
|
|
TBB_LICENSE_FILES = LICENSE.txt
|
|
TBB_CPE_ID_VENDOR = intel
|
|
TBB_CPE_ID_PRODUCT = threading_building_blocks
|
|
|
|
TBB_CONF_OPTS = \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DTBB_STRICT=OFF \
|
|
-DTBB_TEST=OFF
|
|
|
|
$(eval $(cmake-package))
|