2009-02-24 23:45:59 +00:00
|
|
|
This directory contains the sources of the GNU C Library.
|
|
|
|
See the file "version.h" for what release version you have.
|
2006-03-06 10:59:43 +00:00
|
|
|
|
|
|
|
The GNU C Library is the standard system C library for all GNU systems,
|
|
|
|
and is an important part of what makes up a GNU system. It provides the
|
|
|
|
system API for all programs written in C and C-compatible languages such
|
|
|
|
as C++ and Objective C; the runtime facilities of other programming
|
|
|
|
languages use the C library to access the underlying operating system.
|
|
|
|
|
|
|
|
In GNU/Linux systems, the C library works with the Linux kernel to
|
|
|
|
implement the operating system behavior seen by user applications.
|
|
|
|
In GNU/Hurd systems, it works with a microkernel and Hurd servers.
|
|
|
|
|
|
|
|
The GNU C Library implements much of the POSIX.1 functionality in the
|
2013-04-06 16:00:35 +00:00
|
|
|
GNU/Hurd system, using configurations i[4567]86-*-gnu. The current
|
2012-06-30 15:27:06 +00:00
|
|
|
GNU/Hurd support requires out-of-tree patches that will eventually be
|
|
|
|
incorporated into an official GNU C Library release.
|
2006-03-06 10:59:43 +00:00
|
|
|
|
2012-08-03 13:42:47 +00:00
|
|
|
When working with Linux kernels, this version of the GNU C Library
|
Require Linux 3.2 except on x86 / x86_64, 3.2 headers everywhere.
In <https://sourceware.org/ml/libc-alpha/2016-01/msg00885.html> I
proposed a minimum Linux kernel version of 3.2 for glibc 2.24, since
Linux 2.6.32 has reached EOL.
In the discussion in February, some concerns were expressed about
compatibility with OpenVZ containers. It's not clear that these are
real issues, given OpenVZ backporting kernel features and faking the
kernel version for guest software, as discussed in
<https://sourceware.org/ml/libc-alpha/2016-02/msg00278.html>. It's
also not clear that supporting running GNU/Linux distributions from
late 2016 (at the earliest) on a kernel series from 2009 is a sensible
expectation. However, as an interim step, this patch increases the
requirement everywhere except x86 / x86_64 (since the controversy was
only about those architectures); the special caveats and settings can
easily be removed later when we're ready to increase the requirements
on x86 / x86_64 (and if someone would like to raise the issue on LWN
as suggested in the previous discussion, that would be welcome). 3.2
kernel headers are required everywhere by this patch.
(x32 already requires 3.4 or later, so is unaffected by this patch.)
As usual for such a change, this patch only changes the configure
scripts and associated documentation. The intent is to follow up with
removal of dead __LINUX_KERNEL_VERSION conditionals. Each __ASSUME_*
or other macro that becomes dead can then be removed independently.
Tested for x86_64 and x86.
* sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
Define to 3.2.0.
(arch_minimum_kernel): Likewise.
* sysdeps/unix/sysv/linux/configure: Regenerated.
* sysdeps/unix/sysv/linux/i386/configure.ac (arch_minimum_kernel):
Define to 2.6.32.
* sysdeps/unix/sysv/linux/i386/configure: Regenerated.
* sysdeps/unix/sysv/linux/x86_64/64/configure.ac
(arch_minimum_kernel): Define to 2.6.32.
* sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerated.
* README: Document Linux 3.2 requirement.
* manual/install.texi (Linux): Document Linux 3.2 headers
requirement.
* INSTALL: Regenerated.
2016-02-24 17:15:12 +00:00
|
|
|
requires Linux kernel version 3.2 or later on all architectures except
|
|
|
|
i[4567]86 and x86_64, where Linux kernel version 2.6.32 or later
|
|
|
|
suffices.
|
2006-03-06 10:59:43 +00:00
|
|
|
|
2010-02-10 15:34:34 +00:00
|
|
|
Also note that the shared version of the libgcc_s library must be
|
|
|
|
installed for the pthread library to work correctly.
|
|
|
|
|
2006-03-06 10:59:43 +00:00
|
|
|
The GNU C Library supports these configurations for using Linux kernels:
|
|
|
|
|
2014-02-10 15:36:16 +00:00
|
|
|
aarch64*-*-linux-gnu
|
2014-02-12 14:54:57 +00:00
|
|
|
alpha*-*-linux-gnu
|
2014-02-08 01:49:39 +00:00
|
|
|
arm-*-linux-gnueabi
|
2014-04-29 07:08:48 +00:00
|
|
|
hppa-*-linux-gnu Not currently functional without patches.
|
2012-04-27 21:35:47 +00:00
|
|
|
i[4567]86-*-linux-gnu
|
2012-06-30 15:27:06 +00:00
|
|
|
x86_64-*-linux-gnu Can build either x86_64 or x32
|
2014-02-16 03:07:25 +00:00
|
|
|
ia64-*-linux-gnu
|
2014-02-10 19:05:01 +00:00
|
|
|
m68k-*-linux-gnu
|
2014-02-17 01:08:21 +00:00
|
|
|
microblaze*-*-linux-gnu
|
2014-02-10 23:30:21 +00:00
|
|
|
mips-*-linux-gnu
|
|
|
|
mips64-*-linux-gnu
|
2013-10-06 23:23:41 +00:00
|
|
|
powerpc-*-linux-gnu Hardware or software floating point, BE only.
|
2013-10-05 07:02:10 +00:00
|
|
|
powerpc64*-*-linux-gnu Big-endian and little-endian.
|
2006-03-06 10:59:43 +00:00
|
|
|
s390-*-linux-gnu
|
|
|
|
s390x-*-linux-gnu
|
2012-08-07 16:40:32 +00:00
|
|
|
sh[34]-*-linux-gnu
|
2006-03-06 10:59:43 +00:00
|
|
|
sparc*-*-linux-gnu
|
|
|
|
sparc64*-*-linux-gnu
|
2014-02-10 15:54:47 +00:00
|
|
|
tilegx-*-linux-gnu
|
|
|
|
tilepro-*-linux-gnu
|
2006-03-06 10:59:43 +00:00
|
|
|
|
2012-04-27 21:35:47 +00:00
|
|
|
If you are interested in doing a port, please contact the glibc
|
|
|
|
maintainers; see http://www.gnu.org/software/libc/ for more
|
|
|
|
information.
|
2006-03-06 10:59:43 +00:00
|
|
|
|
|
|
|
See the file INSTALL to find out how to configure, build, and install
|
|
|
|
the GNU C Library. You might also consider reading the WWW pages for
|
|
|
|
the C library at http://www.gnu.org/software/libc/.
|
|
|
|
|
|
|
|
The GNU C Library is (almost) completely documented by the Texinfo manual
|
|
|
|
found in the `manual/' subdirectory. The manual is still being updated
|
|
|
|
and contains some known errors and omissions; we regret that we do not
|
|
|
|
have the resources to work on the manual as much as we would like. For
|
|
|
|
corrections to the manual, please file a bug in the `manual' component,
|
|
|
|
following the bug-reporting instructions below. Please be sure to check
|
|
|
|
the manual in the current development sources to see if your problem has
|
|
|
|
already been corrected.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2004-12-19 09:41:58 +00:00
|
|
|
Please see http://www.gnu.org/software/libc/bugs.html for bug reporting
|
|
|
|
information. We are now using the Bugzilla system to track all bug reports.
|
|
|
|
This web page gives detailed information on how to report bugs properly.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
The GNU C Library is free software. See the file COPYING.LIB for copying
|
2002-08-20 21:51:55 +00:00
|
|
|
conditions, and LICENSES for notices about a few contributions that require
|
2011-10-20 21:46:24 +00:00
|
|
|
these additional notices to be distributed. License copyright years may be
|
2015-02-11 22:39:30 +00:00
|
|
|
listed using range notation, e.g., 1996-2015, indicating that every year in
|
2011-10-20 21:46:24 +00:00
|
|
|
the range, inclusive, is a copyrightable year that would otherwise be listed
|
|
|
|
individually.
|