Jim Meyering <[EMAIL PROTECTED]> wrote :
> However, I suspect that there's a problem with gcc's
> header files on your system. stddef.h should define size_t.
> 
> Here's a little test you can run.
> It creates a 2-line file and tries to compile it,
> first with gcc, then with cc.  Both should work.

-----
[EMAIL PROTECTED]:~/src/tmp$ cat k.c
#include <stddef.h>
size_t n;
[EMAIL PROTECTED] cc -c k.c && echo OK
OK
[EMAIL PROTECTED] gcc -c k.c && echo OK
OK
-----

Note that coreutils-4.5.12 does build with cc:
-----
[EMAIL PROTECTED]:~/src/orig/coreutils-4.5.12$ CC=cc ./configure >/dev/null 2>&1 && 
make >/dev/null 2>&1 && echo OK
OK
-----

More details / extra testing upon request.

___________________________________
Webmail Nerim, http://www.nerim.net/




_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to