This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
libio in gcc in CVS is not compatible with glibc 2.2
- To: Ulrich Drepper <drepper at cygnus dot com>, gcc-bugs at gcc dot gnu dot org
- Subject: libio in gcc in CVS is not compatible with glibc 2.2
- From: "H . J . Lu" <hjl at lucon dot org>
- Date: Mon, 17 Jul 2000 23:50:20 -0700
The return type of _IO_seekoff in glibc 2.2 is changed from _IO_pos_t
to _IO_off_t. However, libio in gcc still uses _IO_pos_t. As the
result, "make check" in gcc configured with libstdc++ will fail
in libio/dbz since _G_fpos_t != _G_off_t in glibc 2.2.
H.J.