Hello
I am trying to compile gcc-2.7.2 distribution under FreeBSD-2.1.5.
I used
./configure --build=i386-freebsd --prefix=/local/gnu
to generate the Makefile.
I see the following warning messages in stage1 compilation of gcc-2.7.2
distribution using gcc-2.6.3. I looked at the header files
/usr/include/stdio.h:43 IS #include <sys/types.h>
/usr/include/sys/types.h:107 IS #ifdef _BSD_SIZE_T_
typedef _BSD_SIZE_T_ size_t;
#endif
/usr/include/sys/types.h:99 IS #include <machine/ansi.h>
/usr/include/machine/ansi.h:51 IS #define _BSD_SIZE_T_ unsigned int
which means that warning should not be there!! Any pointers will be
appreciated.
Ishwar Rattan
-------warnings---
_varargs
_eprintf
In file included from /usr/include/stdio.h:43,
from ./libgcc2.c:1419:
/usr/include/sys/types.h:108: warning: empty declaration
_op_new
_op_vnew
_new_handler
In file included from /usr/include/stdio.h:43,
from ./libgcc2.c:1705:
/usr/include/sys/types.h:108: warning: empty declaration
_op_delete
_op_vdel
_bb
In file included from /usr/include/stdio.h:43,
from ./libgcc2.c:1465:
/usr/include/sys/types.h:108: warning: empty declaration
..
-------