mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
package/liburcu: introduce BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS symbol
This new hidden symbol will allow simplifying the architecture dependencies on package that depends on liburcu. These packages will be updated in follow-up patches. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
d4b9490b67
commit
f50bd3c0b8
@ -1,6 +1,11 @@
|
|||||||
|
config BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
|
||||||
|
bool
|
||||||
|
depends on BR2_arm || BR2_armeb || BR2_aarch64 || BR2_i386 || BR2_powerpc || BR2_x86_64
|
||||||
|
default y
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBURCU
|
config BR2_PACKAGE_LIBURCU
|
||||||
bool "liburcu"
|
bool "liburcu"
|
||||||
depends on BR2_arm || BR2_armeb || BR2_aarch64 || BR2_i386 || BR2_powerpc || BR2_x86_64
|
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
|
||||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
help
|
help
|
||||||
@ -18,7 +23,7 @@ config BR2_PACKAGE_LIBURCU
|
|||||||
http://lttng.org/urcu
|
http://lttng.org/urcu
|
||||||
|
|
||||||
comment "liburcu needs a toolchain w/ threads"
|
comment "liburcu needs a toolchain w/ threads"
|
||||||
depends on BR2_arm || BR2_armeb || BR2_aarch64 || BR2_i386 || BR2_powerpc || BR2_x86_64
|
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
|
||||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user