This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Test results with libstdc++ v3
- To: egcs at egcs dot cygnus dot com
- Subject: Test results with libstdc++ v3
- From: "H . J . Lu" <hjl at lucon dot org>
- Date: Mon, 15 May 2000 13:54:48 -0700
I ran "make check" with libstdc++-v3. I got many extra g++ failures:
http://gcc.gnu.org/ml/gcc-testresults/2000-05/msg00108.html
I got many
# /work/build/gnu/bin/egcs-libstdc++v3/gcc/testsuite/../g++ -B/work/build/gnu/bin/egcs-libstdc++v3/gcc/testsuite/../ /work/gnu/src/egcs/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C -I/work/build/gnu/bin/egcs-libstdc++v3/i686-pc-linux/libstdc++-v3 -I/work/build/gnu/bin/egcs-libstdc++v3/i686-pc-linux/libstdc++-v3/libio -I/work/gnu/src/egcs/gcc/../libstdc++-v3/config/gnu-linux -I/work/gnu/src/egcs/gcc/../libstdc++-v3/config/cpu/i386 -I/work/gnu/src/egcs/gcc/../libstdc++-v3/std -I/work/gnu/src/egcs/gcc/../libstdc++-v3 -I/work/gnu/src/egcs/gcc/../libstdc++-v3/libio -mcpu=pentiumpro -march=pentiumpro -fmessage-length=0 -ansi -pedantic-errors -lstdc++ -L/work/build/gnu/bin/egcs-libstdc++v3/i686-pc-linux/libstdc++-v3/src/.libs -L/work/build/gnu/bin/egcs-libstdc++v3/i686-pc-linux/libiberty -lm -o /work/build/gnu/bin/egcs-libstdc++v3/gcc/testsuite/g++-abi-ptrflags-C ^M
In file included from /work/gnu/src/egcs/libstdc++-v3/bits/std_typeinfo.h:34,^M
from /work/gnu/src/egcs/libstdc++-v3/std/typeinfo:2,^M
from
/work/gnu/src/egcs/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C:5:^M
/work/gnu/src/egcs/libstdc++-v3/bits/std_exception.h:33:1: ISO C does not allow #include_next^M
In file included from /work/gnu/src/egcs/libstdc++-v3/std/typeinfo:2,^M
from
/work/gnu/src/egcs/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C:5:^M /work/gnu/src/egcs/libstdc++-v3/bits/std_typeinfo.h:37:1: ISO C does not allow
#include_next^M
The problem is "-ansi -pedantic-errors" with
#ifdef __GNUG__
# include_next <typeinfo>
#else
Is that intensional? BTW, I am using a patch
http://www.lucon.org/gcc/3.0/gcc-3.0-libstc++-v3.patch
for "make check" with libstc++ v3.
H.J.