07bb65c657
Quite some time ago, we added the options BR2_TOOLCHAIN_HAS_GCC_BUG_58595 and BR2_TOOLCHAIN_HAS_GCC_BUG_58854 to indicate if the toolchain was affected by those gcc bugs, which were causing build failure with a number of packages. With the recent change in the external toolchain logic to provide only the latest version of each toolchain "family", all the toolchains which were affected by those issues disappeared from Buildroot. Those options are no longer being selected anywhere, and being blind options, it means their value is always going to be "disabled". Conquently, this commit removes those options completely, and updates all the packages where they were used. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
885 B
Plaintext
27 lines
885 B
Plaintext
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
|
|
bool "liburcu"
|
|
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
Userspace implementation of the Read-Copy-Update (RCU)
|
|
synchronization mechanism. This library is mainly used by
|
|
the LTTng tracing infrastructure, but can be used for other
|
|
purposes as well.
|
|
|
|
On ARM, because of bug:
|
|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58854
|
|
liburcu cannot be built using gcc 4.8.0, 4.8.1 or 4.8.2 without the
|
|
following bug fix:
|
|
http://gcc.gnu.org/viewcvs/gcc?view=revision&revision=204665
|
|
|
|
http://lttng.org/urcu
|
|
|
|
comment "liburcu needs a toolchain w/ threads"
|
|
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|