summaryrefslogtreecommitdiffstats
path: root/toolchain/toolchain-buildroot
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-11-11 18:57:31 +0100
committerPeter Korsgaard <peter@korsgaard.com>2013-11-11 22:29:16 +0100
commit819da04481d17ac00e1ca4843c05dffc3599a72e (patch)
tree6b54f6407aced939f3b634a715c5727e07574d28 /toolchain/toolchain-buildroot
parent924b8739da72706afd543026b34030d3111322a9 (diff)
downloadbuildroot-819da04481d17ac00e1ca4843c05dffc3599a72e.tar.gz
buildroot-819da04481d17ac00e1ca4843c05dffc3599a72e.zip
toolchain-buildroot: make sure glibc isn't chosen when BR2_PREFER_STATIC_LIB=y
(e)glibc doesn't support a fully statically linked userspace. Even a basic program such as Busybox fails to do authentication due to glibc loading some libraries dynamically. Therefore, we disable the possibility of building a glibc toolchain when BR2_PREFER_STATIC_LIB=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'toolchain/toolchain-buildroot')
-rw-r--r--toolchain/toolchain-buildroot/Config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
index 5111c746f9..8b37127d49 100644
--- a/toolchain/toolchain-buildroot/Config.in
+++ b/toolchain/toolchain-buildroot/Config.in
@@ -23,6 +23,7 @@ config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
BR2_sh || BR2_sh64 || BR2_sparc || \
BR2_x86_64
depends on BR2_USE_MMU
+ depends on !BR2_PREFER_STATIC_LIB
select BR2_TOOLCHAIN_USES_GLIBC
# our eglibc.mk enables RPC support
select BR2_TOOLCHAIN_HAS_NATIVE_RPC
@@ -43,6 +44,7 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
BR2_sh || BR2_sh64 || BR2_sparc || \
BR2_x86_64
select BR2_TOOLCHAIN_USES_GLIBC
+ depends on !BR2_PREFER_STATIC_LIB
# our glibc.mk enables RPC support
select BR2_TOOLCHAIN_HAS_NATIVE_RPC
help
@@ -54,6 +56,9 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
http://www.gnu.org/software/libc/
+comment "(e)glibc only available with shared lib support"
+ depends on BR2_PREFER_STATIC_LIB
+
endchoice
config BR2_TOOLCHAIN_BUILDROOT_LIBC
OpenPOWER on IntegriCloud