17 lines
631 B
Plaintext
17 lines
631 B
Plaintext
|
config BR2_PACKAGE_TBB
|
||
|
bool "tbb"
|
||
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
||
|
depends on !BR2_STATIC_LIBS
|
||
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||
|
depends on BR2_INSTALL_LIBSTDCPP
|
||
|
help
|
||
|
Intel(R) Threading Building Blocks (Intel(R) TBB) lets you
|
||
|
easily write parallel C++ programs that take full advantage
|
||
|
of multicore performance, that are portable, composable and
|
||
|
have future-proof scalability.
|
||
|
|
||
|
https://www.threadingbuildingblocks.org/
|
||
|
|
||
|
comment "tbb needs a glibc toolchain w/ dynamic library, threads, C++"
|
||
|
depends on !BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|