This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

make check on Alpha and SPARC (with patch for alpha)



Hi,

I compiled the current glibc cvs version and some problems on
Alpha and SPARC.

On both, Alpha and SPARC tst-mtrace failed. In the tst-mtrace.out
file, there are a lot of entries with "Alloc XX duplicate: ...."
and 2 entries with Memory not freed. Since I don't know what the
test expects, I don't know how to fix this.

On Alpha, also tfformat fails, I don't know why. For tst-limits
I append a patch. INT_MAX was used for "long int" in bits/xopen_lim.h
which is wrong. LONG_MAX should be used.

  Thorsten

-- 
Thorsten Kukuk       http://www.suse.de/~kukuk/       kukuk@suse.de
SuSE GmbH            Schanzaeckerstr. 10            90443 Nuernberg
Linux is like a Vorlon.  It is incredibly powerful, gives terse,
cryptic answers and has a lot of things going on in the background.

2000-09-16  Thorsten Kukuk  <kukuk@suse.de>

	* include/bits/xopen_lim.h: Use LONG_MAX for "long int"

--- include/bits/xopen_lim.h
+++ include/bits/xopen_lim.h	2000/09/16 15:53:08
@@ -104,7 +104,7 @@
 #endif
 
 /* Number of bits in a word of type `long int'.  */
-#if INT_MAX == 2147483647
+#if LONG_MAX == 2147483647
 # define LONG_BIT	32
 #else
 /* Safe assumption.  */

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