A Technical Comparison of glibc 2.x With Legacy System Libraries

In order for application software to be able to run, an operating system must provide several key components. On Linux systems, the Linux kernel is widely known as being one of those components, but not everyone is aware of the integral role that the standard C library (commonly referred to as "libc") plays in the framework necessary to run virtually all software. UNIX has historically been written in the C programming language, so it is no surprise that programmers created a set of programming routines that could be used to make writing software in C easier. The IEEE codified a standard, the POSIX.1 standard, to specify the programming routines that an operation system must make available to be compatible with the UNIX standard.

History

Over its brief but fast-moving history, the GNU/Linux operating system has used several different series of libc's to provide this functionality. During the very early days of Linux development, several consecutive libc series ensued, each one attempting to come a bit closer to POSIX.1. These series, libc's 1-4, were the C libraries for programs stored in the a.out binary format.

libc 5 heralded the move to storing programs in the ELF (Executable and Linking Format) binary format, which provided much greater flexibility and the ability to easily make libraries of routines that could be shared between running programs. While a.out had this ability, ELF made it easy, and brought Linux up to speed with other modern UNIX-like OS's (such as Sun Solaris, Digital UNIX, and IRIX) that use the same format.

The Move to glibc

libc 5 worked well, but it had several drawbacks. The GNU project had had a C library (hereafter called glibc), from which libc 4 and 5 had been derived. Although work on glibc had been halted for a long time, programmers on the Internet decided to resume work, and glibc 2.0 showed definite advantages over libc 5. H.J. Lu, the libc 5 maintainer, decided not to continue support of libc 5, and recommended the use of glibc. Red Hat Software, following this lead, decided to switch to using glibc as the main C library for their C distribution, and released Red Hat Linux 5.0 in December of 1997, with glibc 2.0.5c serving in this role. Other distributions, most notable Debian GNU/Linux, are planning to switch to glibc in the future, too.

Why Switch?

People are reluctant to make any change when the present solution seems to work well, and the transition from libc 5 to glibc was no exception. Here are the main reasons why the switch was needed: During the transition, glibc has definitely had its teething pains, but it is needed to ensure that Linux is ready to expand into new markets.
Please send comments, questions, additions, and corrections to Elliot Lee

References

The actual list of reasons is largely taken from a newsgroup post of mine on the subject.

The main glibc web page is here.

Last modified: Thu Jul 9 1998