Embedded C library http://uclibc-ng.org

Eric Andersen 1b44e1b2bb Use the gcc 3.4 -funit-at-a-time optimization when available hace 20 años
debian 428164826a Bump .deb version hace 20 años
docs d7d8366744 Fix paragraph seperation hace 20 años
extra c054a19d56 As mjn3 noticed, 64 bit arches should select UCLIBC_HAS_LFS hace 20 años
include 5dd9f2af4b Add a dummy (always fails) wcsftime. This is needed for the libstdc++ locale hace 20 años
ldso c761b902cd Some badly behaved arches fail to provide a PAGE_SIZE define hace 20 años
libc 8d38283b9c Ok.. we need to link with libgcc.a for some archs. I haven't looked at hace 20 años
libcrypt 36be007b26 Minor cleanup hace 20 años
libintl fe6015e8aa minor cleanup hace 20 años
libm b2c0634d20 Make certain that arch specific stuff is compiled last hace 20 años
libnsl fe6015e8aa minor cleanup hace 20 años
libpthread 3bc61e6430 remove unused file hace 20 años
libresolv fe6015e8aa minor cleanup hace 20 años
libutil fe6015e8aa minor cleanup hace 20 años
test 119b5a98ec Add ldflags where needed hace 20 años
utils 32e79c3f29 Link ldconfig with the appropriate libraries. hace 20 años
.cvsignore 62348cb744 Minor update... Config no longer used. hace 20 años
COPYING.LIB 64bc641218 Initial revision hace 24 años
Changelog eecd5c649c Update for release hace 20 años
Changelog.full eecd5c649c Update for release hace 20 años
Changelog.full.last ba64d84bc7 Update for release hace 20 años
INSTALL 1528771f28 Update docs in preparation for release hace 20 años
Makefile ad8d1eb442 Fixup dated comments hace 20 años
README 1528771f28 Update docs in preparation for release hace 20 años
Rules.mak 1b44e1b2bb Use the gcc 3.4 -funit-at-a-time optimization when available hace 20 años
TODO 6e80c6c0ea Remove some stuff that is now done hace 20 años

README


uClibc - a Small C Library for Linux
Erik Andersen

uClibc (aka Clibc/pronounced yew-see-lib-see) is a C library for
developing embedded Linux systems. It is much smaller than the
GNU C Library, but nearly all applications supported by glibc
also work perfectly with uClibc. Porting applications from glibc
to uClibc typically involves just recompiling the source code.
uClibc even supports shared libraries and threading. It currently
runs on standard Linux and MMU-less (also known as Clinux)
systems with support for alpha, ARM, cris, e1, h8300, i386, i960,
m68k, microblaze, mips/mipsel, PowerPC, SH, SPARC, and v850
processors.

If you are building an embedded Linux system and you find that
glibc is eating up too much space, you should consider using
uClibc. If you are building a huge fileserver with 12 Terabytes
of storage, then using glibc may make more sense. Unless, for
example, that 12 Terabytes will be Network Attached Storage and
you plan to burn Linux into the system's firmware...

uClibc is maintained by Erik Andersen and is licensed under the
GNU LIBRARY GENERAL PUBLIC LICENSE . This license allows you to
make closed source commercial applications using an unmodified
version of uClibc (Please consider sharing some of the money you
make ;-). You do not need to give away all your source code just
because you use uClibc and/or run on Linux. You should, however,
carefuly review the license and make certain you understand and
abide by it strictly.


For installation instructions, see the file INSTALL.

uClibc strives to be standards compliant, which means that most
documentation written for SuSv3, or for glibc also applies to
uClibc functions. However, many GNU extensions are not supported
because they have not been ported, or more importantly, would
increase the size of uClibc disproportional to the added
functionality. There is some discussion of these differences
in the "docs" directory.

Additional information (recent releases, FAQ, mailing list, bugs,
etc.) can be found at http://www.uclibc.org/.

uClibc may be freely modified and distributed under the terms of
the GNU Library General Public License, which can be found in the
file COPYING.LIB.

Please Note:

There is an unwholesomely huge amount of code out there
that depends on the presence of GNU libc header files.
We have GNU libc compatible header files. So we have
committed a horrible sin in uClibc. We _lie_ and claim
to be GNU libc in order to force these applications to
work as their developers intended. This is IMHO,
pardonable, since these defines are not really intended
to check for the presence of a particular library, but
rather are used to define an _interface_. Some programs
are especially chummy with glibc, and may need this
behavior disabled by adding CFLAGS+=-D__FORCE_NOGLIBC

If you want to make special exceptions in your code which are
specifically for uClibc, you can make certain to include features.h,
and then have your code check for uClibc as follows:

#ifdef __UCLIBC__
do_something_special();
#endif

And most of all, but sure to have some fun!
-Erik