diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2016-02-27 22:32:32 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-02-27 23:27:06 +0100 |
commit | 4d00a4058b9e522f34a00c4c0c1b2a6be6dc13fb (patch) | |
tree | 835f3a432e8636df05f5df8b0aff51f7c3125431 | |
parent | 3fd4dde530498b67a0599b164e55773e07427701 (diff) | |
download | buildroot-4d00a4058b9e522f34a00c4c0c1b2a6be6dc13fb.tar.gz buildroot-4d00a4058b9e522f34a00c4c0c1b2a6be6dc13fb.zip |
can-festival: disable on musl
Previous attempts to fix it failed [1], so disable it instead.
[1] http://patchwork.ozlabs.org/patch/509731/
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/canfestival/Config.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/canfestival/Config.in b/package/canfestival/Config.in index 7c7b370de0..4e734964aa 100644 --- a/package/canfestival/Config.in +++ b/package/canfestival/Config.in @@ -2,13 +2,16 @@ config BR2_PACKAGE_CANFESTIVAL_ARCH_SUPPORTS bool default y if BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_arm -comment "canfestival needs a toolchain w/ threads and dynamic library" +comment "canfestival needs a (e)glibc or uClibc toolchain w/ threads and dynamic library" depends on BR2_PACKAGE_CANFESTIVAL_ARCH_SUPPORTS - depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS + depends on BR2_TOOLCHAIN_USES_MUSL || \ + !BR2_TOOLCHAIN_HAS_THREADS || \ + BR2_STATIC_LIBS config BR2_PACKAGE_CANFESTIVAL bool "canfestival" depends on BR2_PACKAGE_CANFESTIVAL_ARCH_SUPPORTS + depends on !BR2_TOOLCHAIN_USES_MUSL depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS help |