diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-09 12:26:21 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-09 14:42:43 +0200 |
commit | 1e6ea2d112d5d2a0a830b13e41bae9fb1e99c4da (patch) | |
tree | 7cf80c16ce1606d8cf34e9f0a5d75f6a7499f7cf | |
parent | 1ce2382251e849d294cd6fec14a472c0f5ed669a (diff) |
package/libbsd: needs an (e)glibc toolchain
libbsd needs support for .init_array and checks for a
glibc >= 2.4 since .init_array was introduced at around
that time.
uClibc claims to be a glibc-compatible toolchain, but it
only impersonates a glibc-2.2.
Just disable libbsd on uClibc.
Fixes:
http://autobuild.buildroot.net/results/e94/e949d8fabeeecc74bd1c324c516e0b4938c99dbc/
http://autobuild.buildroot.net/results/d3e/d3e1b70fb91571efacbe32af2cd12d055508f5ac/
http://autobuild.buildroot.net/results/b19/b19d24dbf9d05d86d839349695da45d548705b25/
[...]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libbsd/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libbsd/Config.in b/package/libbsd/Config.in index 8c90aa134..e22226a09 100644 --- a/package/libbsd/Config.in +++ b/package/libbsd/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_LIBBSD # architectures: arm, m68k, x86 (and alpha, but we don't care.) depends on ( BR2_i386 || BR2_x86_64 ) depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_TOOLCHAIN_USES_GLIBC help This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making @@ -13,6 +14,6 @@ config BR2_PACKAGE_LIBBSD http://libbsd.freedesktop.org/ -comment "libbsd needs a toolchain w/ threads" +comment "libbsd needs an (e)glibc toolchain w/ threads" depends on ( BR2_i386 || BR2_x86_64 ) - depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC |