package/xenomai: disable for musl toolchains
authorRomain Naour <romain.naour@gmail.com>
Mon, 1 Aug 2016 16:30:21 +0000 (18:30 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 1 Aug 2016 20:09:17 +0000 (22:09 +0200)
After fixing the <bits/local_lim.h> issue by using <limits.h>, the
build still fail with udefined __WORDSIZE.

Adding <sys/user.h> to define __WORDSIZE reveal that xenomai use
<error.h> which is not provided by musl.

The discussion on the musl mailing list [1] about glibc error reporting
functions concluded to not add this support in the C library.

For now, disable Xenomai user space support for musl toolchains since
it require several patches to build correctly and needs to remove each
glibc error reporting functions.

Users interested in musl support for Xenomai can work with upstream to
fix these issues and revert this patch.

[1] http://www.openwall.com/lists/musl/2014/06/29/8

Fixes:
http://autobuild.buildroot.net/results/e36/e36a21c1df33bdd3fbc61d516a3e8f7c5f7c41af

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/xenomai/Config.in

index 3de7bde0929625af37574808420a1833b9934f57..32c5124ef50469049c106fcb194c5a2db3ccb9f6 100644 (file)
@@ -4,14 +4,16 @@ config BR2_PACKAGE_XENOMAI_ARCH_SUPPORTS
        depends on BR2_i386 || BR2_x86_64 || (BR2_arm && !BR2_ARM_CPU_ARMV7M) || \
                BR2_bfin || BR2_powerpc || BR2_sh4
 
-comment "xenomai needs a toolchain w/ threads"
-       depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "xenomai needs an glibc or uClibc toolchain w/ threads"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL
        depends on BR2_PACKAGE_XENOMAI_ARCH_SUPPORTS
 
 config BR2_PACKAGE_XENOMAI
        bool "Xenomai Userspace"
        depends on BR2_PACKAGE_XENOMAI_ARCH_SUPPORTS
        depends on BR2_TOOLCHAIN_HAS_THREADS
+       # uses <error.h>, __WORDSIZE and bits/local_lim.h
+       depends on !BR2_TOOLCHAIN_USES_MUSL
        help
          Real-Time Framework for Linux
          http://www.xenomai.org