diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-28 17:04:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-28 17:04:42 +0000 |
commit | 3f9c84857617b0cf0d1824664e371fb6a4cac2e3 (patch) | |
tree | c073e77c0c0362246ce7eaccb3c846b15b8d2417 /applets | |
parent | ddc865fb0ddee9ed75467a164f27472c2234910a (diff) | |
download | busybox-3f9c84857617b0cf0d1824664e371fb6a4cac2e3.tar.gz |
trylink: instead of build error, disable --gc-sections if GLIBC && STATIC
nameif: glibc build fixlet
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/applets/applets.c b/applets/applets.c index 33951fa8f..40c482408 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -10,17 +10,6 @@ #include <assert.h> #include "busybox.h" -/* Apparently uclibc defines __GLIBC__ (compat trick?). Oh well. */ -#if ENABLE_STATIC && defined(__GLIBC__) && !defined(__UCLIBC__) -#warning Static linking against glibc produces buggy executables -#warning (glibc does not cope well with ld --gc-sections). -#warning See sources.redhat.com/bugzilla/show_bug.cgi?id=3400 -#warning Note that glibc is unsuitable for static linking anyway. -#warning If you still want to do it, remove -Wl,--gc-sections -#warning from scripts/trylink and remove this warning. -#error Aborting compilation. -#endif - #if ENABLE_BUILD_LIBBUSYBOX int main(int argc, char **argv) { |