This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Compiling GCC with g++: a report
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: gcc at gcc dot gnu dot org
- Cc: jason at redhat dot com, mark at codesourcery dot com, dberlin at dberlin dot org
- Date: 24 May 2005 03:01:46 +0200
- Subject: Re: Compiling GCC with g++: a report
- References: <m364xapix6.fsf@merlin.cs.tamu.edu>
Gabriel Dos Reis <gdr@cs.tamu.edu> writes:
[...]
| Attempt to get the GNU C++ compiler through the same massage is
| underway (but I'm going to bed shortly ;-)).
I can also report that I got the GNU C++ compiler through -- and apart
form uses of C++ keywords (template, namespace, class), it worked
out. A note on type sfety issue though: lookup_name() is declared in
c-tree.h as
extern tree lookup_name (tree);
and used in c-common.c:handle_cleanup_attribute() according to that
signature. It is however declared and defined in cp/ as
extern tree lookup_name (tree, int);
That was caught at link time (and dealt with).
-- Gaby