This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: architectures, please report on trunk status


On Tue, Feb 28, 2006 at 12:21:00PM -0800, Roland McGrath wrote:
> People responsible for the architectures in the main source tree, and
> people who build and test on them, please report ASAP on their status.  
> The architectures I get reports on in the next few days are the ones that
> will be mentioned in the 2.4 release announcement as known to work.
> 
> Please report: build known to work; Linux kernel versions believed
> compatible (modulo threads issues); status of NPTL, and specific Linux
> kernel versions (and hardware flavors, if relevant) on which NPTL works;
> verify that "make check-abi" results show no old symbols gone missing.
> Hurd folks, berate me privately.

I built today on {i386,i686,x86_64,ia64,ppc,ppc64,s390,s390x}.
The only fix I needed was on s390x, attached.
make check was ok, it was an automated build, so I haven't tried check-abi,
but will check that with my scripts soon.  {sparc,sparcv9,sparc64} build
is in progress (a NPTL patch is needed there, will post once it builds and
gets tested).

2006-03-01  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (DECLARGS_6): Fix a typo.

--- libc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h.jj	2006-02-28 15:14:07.000000000 +0100
+++ libc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h	2006-03-01 13:31:48.000000000 +0100
@@ -268,7 +268,7 @@
 	register unsigned long gpr6 asm ("6") = (unsigned long)(arg5);
 #define DECLARGS_6(arg1, arg2, arg3, arg4, arg5, arg6) \
 	DECLARGS_5(arg1, arg2, arg3, arg4, arg5) \
-	register unsigned long gpr6 asm ("7") = (unsigned long)(arg6);
+	register unsigned long gpr7 asm ("7") = (unsigned long)(arg6);
 
 #define ASMFMT_0
 #define ASMFMT_1 , "0" (gpr2)


	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]