Go to file
Daniel Gutson 274895575e Add ARM EABI build attributes.
Ensure that all objects in ARM EABI glibc have the proper EABI build
attributes to indicate that 8-byte stack alignment is required and
preserved.  (GNU ld does not currently give errors for mixing code
requiring 8-byte alignment - such as anything built with GCC - and
code not marked as preserving it, because of the prevalence of
assembly code without proper markers to indicate that alignment is
preserved.  The ARM RealView linker does give such errors.)

The bulk of the markers are accomplished by the change to sysdep.h,
but a few .S files do not include sysdep.h.  In the case of
internal_accept4.S, no code is generated because EABI does not have
socketcall, but for completeness a dummy file with the right
attributes is used to override the default version in libc.

	* sysdeps/arm/sysdep.h: (Tag_ABI_align8_preserved,
	Tag_ABI_align8_needed): Attributes added.
	* sysdeps/arm/elf/start.S: Likewise.
	* sysdeps/arm/eabi/abi-note.S: New file.
	* sysdeps/unix/sysv/linux/arm/eabi/internal_accept4.S: New
	file.
2009-10-22 19:39:47 +00:00
bare Remove .cvsignore files 2009-05-16 10:36:20 +02:00
data * sysdeps/powerpc/nofpu/shlib-versions: New. 2008-08-19 16:06:38 +00:00
sysdeps Add ARM EABI build attributes. 2009-10-22 19:39:47 +00:00
Banner 2004-08-04 Roland McGrath <roland@frob.com> 2004-08-05 03:46:43 +00:00
ChangeLog . 2006-03-06 11:05:33 +00:00
ChangeLog.aix * sysdeps/arm/nptl/tls.h (THREAD_GSCOPE_RESET_FLAG): Use 2007-07-10 13:35:30 +00:00
ChangeLog.alpha asm/elf.h don't exist anymore since linux kernel 2.6.25 2009-07-19 16:01:07 +02:00
ChangeLog.am33 Define F_DUPFD_CLOEXEC. 2007-10-22 13:11:49 +00:00
ChangeLog.arm Add ARM EABI build attributes. 2009-10-22 19:39:47 +00:00
ChangeLog.cris Define F_DUPFD_CLOEXEC. 2007-10-22 13:11:49 +00:00
ChangeLog.hppa Implement new NPTL POSIX Threads ABI for HPPA. 2009-09-08 14:32:53 -04:00
ChangeLog.m68k Add ____longjmp_chk for m68k-linux 2009-09-06 21:24:50 +02:00
ChangeLog.mips Define F_SETOWN_EX and F_GETOWN_EX for MIPS. 2009-10-03 17:39:53 +00:00
ChangeLog.powerpc * sysdeps/powerpc/nofpu/shlib-versions: New. 2008-08-19 16:06:38 +00:00
Makefile 2006-03-06 Roland McGrath <roland@redhat.com> 2006-03-06 11:05:27 +00:00
README 2006-02-28 Roland McGrath <roland@redhat.com> 2006-02-28 08:23:38 +00:00

This is the glibc ports repository, an add-on for the GNU C Library (glibc).
It contains code that is not maintained in the official glibc source tree.

This includes working ports to GNU/Linux on some machine architectures that
are not maintained in the official glibc source tree.  It also includes
some code once used by old libc ports now defunct, which has been abandoned
but may be useful for some future porter to examine.  It may also include
some optimized functions tailored for specific CPU implementations of an
architecture, to be selected using --with-cpu.

The ports repository is cooperatively maintained by volunteers on the
<libc-ports@sourceware.org> mailing list, and housed in the glibc CVS as a
module called "ports".  See http://www.gnu.org/software/libc/resources.html
for details on using CVS.  To report a bug in code housed in the ports
repository, please go to http://sources.redhat.com/bugzilla/ and file a bug
report under the glibc "ports" component.

An add-on for an individual port can be made from just the sysdeps/
subdirectories containing the port's code.  You may want to include a
README and Banner of your own talking about your port's code in particular,
rather than the generic ones here.

The real source code for any ports is found in the sysdeps/ subdirectories.
These should be exactly what would go into the main libc source tree if you
were to incorporate it directly.  The only exceptions are the files
sysdeps/*/preconfigure and sysdeps/*/preconfigure.in; these are fragments
used by this add-on's configure fragment.  The purpose of these is to set
$base_machine et al when the main libc configure's defaults are not right
for some machine.  Everything else can and should be done from a normal
sysdeps/.../configure fragment that is used only when the configuration
selects that sysdeps subdirectory.  Each port that requires some special
treatment before the sysdeps directory list is calculated, should add a
sysdeps/CPU/preconfigure file; this can either be written by hand or
generated by Autoconf from sysdeps/CPU/preconfigure.in, and follow the
rules for glibc add-on configure fragments.  No preconfigure file should do
anything on an unrelated configuration, so that disparate ports can be put
into a single add-on without interfering with each other.

Like all glibc add-ons, this must be used by specifying the directory in
the --enable-add-ons option when running glibc's configure script.


$Id$