fix incorrect text of link-time error message. No code changes
[platform/upstream/busybox.git] / applets / applets.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Stub for linking busybox binary against libbusybox.
4  *
5  * Copyright (C) 2007 Denis Vlasenko
6  *
7  * Licensed under GPLv2, see file License in this tarball for details.
8  */
9
10 #include <assert.h>
11 #include "busybox.h"
12
13 /* Apparently uclibc defines __GLIBC__ (compat trick?). Oh well. */
14 #if ENABLE_STATIC && defined(__GLIBC__) && !defined(__UCLIBC__)
15 #warning Static linking against glibc produces buggy executables
16 #warning (glibc does not cope well with ld --gc-sections).
17 #warning See sources.redhat.com/bugzilla/show_bug.cgi?id=3400
18 #warning Note that glibc is unsuitable for static linking anyway.
19 #warning If you still want to do it, remove -Wl,--gc-sections
20 #warning from scripts/trylink and remove this warning.
21 #error Aborting compilation.
22 #endif
23
24 #if ENABLE_BUILD_LIBBUSYBOX
25 int main(int argc, char **argv)
26 {
27         return lbb_main(argc, argv);
28 }
29 #endif