This is the mail archive of the libc-alpha@sources.redhat.com 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]

Results for glibc-2.2.92


Hi.

I built 2.2.92 last night. Actually, it was 2.2.92 plus a little
bit more when I updated my code from CVS. I needed the following
small patch to successfully build things ...

Index: sysdeps/generic/readelflib.c
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/generic/readelflib.c,v
retrieving revision 1.7
diff -u -r1.7 readelflib.c
--- sysdeps/generic/readelflib.c	29 Aug 2002 10:35:55 -0000	1.7
+++ sysdeps/generic/readelflib.c	30 Aug 2002 13:02:49 -0000
@@ -101,7 +101,7 @@
 	{
 	case PT_LOAD:
 	  if (loadaddr == -1)
-	    loadaddr = segment->p_vaddr - segment_p_offset;
+	    loadaddr = segment->p_vaddr - segment->p_offset;
 	  break;
 
 	case PT_DYNAMIC:

After fixing this file, the build completed. Just like for my
report with 2.2.91, there was a single failure in string/tester.out
that "stpcpy flunked test 1", but this has been identified as
a compiler issue. Other than that, it looks like all the other
tests passed.

Art Haas

-- 
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
 -- Benjamin Franklin, Historical Review of Pennsylvania, 1759


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