patches/glibc/2.3.2/arm-asm-clobber.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 17:48:32 2007 +0000 (2007-05-08)
changeset 78 c3868084d81a
permissions -rw-r--r--
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);

Shut uClibc finish step: there really is nothing to do;

Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);

Did not catch the make errors: fixed the pattern matching in scripts/functions;

Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;

Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
     1 http://gcc.gnu.org/PR11103
     2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/arm/sysdep.h.diff?r1=1.22&r2=1.23&cvsroot=glibc
     3 http://lists.arm.linux.org.uk/pipermail/linux-arm/2003-July/005826.html
     4 
     5 Error:
     6 ../sysdeps/unix/sysv/linux/arm/sigaction.c: In function `__libc_sigaction':
     7 ../sysdeps/unix/sysv/linux/arm/sigaction.c:100: error: asm-specifier for variable `_a1' conflicts with asm clobber list
     8 ../sysdeps/unix/sysv/linux/arm/sigaction.c:139: error: asm-specifier for variable `_a1' conflicts with asm clobber list
     9 make[2]: *** [build-glibc/signal/sigaction.o] Error 1
    10 
    11 ===================================================================
    12 RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/arm/sysdep.h,v
    13 retrieving revision 1.22
    14 retrieving revision 1.23
    15 diff -u -r1.22 -r1.23
    16 --- libc/sysdeps/unix/sysv/linux/arm/sysdep.h	2003/03/23 19:42:22	1.22
    17 +++ libc/sysdeps/unix/sysv/linux/arm/sysdep.h	2003/03/24 19:00:28	1.23
    18 @@ -174,7 +174,7 @@
    19         asm volatile ("swi	%1	@ syscall " #name	\
    20  		     : "=r" (_a1)				\
    21  		     : "i" (SYS_ify(name)) ASM_ARGS_##nr	\
    22 -		     : "a1", "memory");				\
    23 +		     : "memory");				\
    24         _sys_result = _a1;					\
    25       }								\
    26       (int) _sys_result; })