This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: bootstrap problem on x86-linux (and presumably everywhere else)
- To: Geoff Keating <geoffk at redhat dot com>
- Subject: Re: bootstrap problem on x86-linux (and presumably everywhere else)
- From: Tom Tromey <tromey at redhat dot com>
- Date: 17 May 2001 17:35:14 -0600
- Cc: java at gcc dot gnu dot org
- References: <200105172249.PAA25301@geoffk.org>
- Reply-To: tromey at redhat dot com
>>>>> "Geoff" == Geoff Keating <geoffk@geoffk.org> writes:
Geoff> I believe this is because libgcj contains C++ code (for
Geoff> instance, shs.cc) but does not link with libstdc++.
Geoff> Is there some reason why this shouldn't be done?
Yeah, we just went through a lot of trouble to get rid of it.
For libgcj, linking against libstdc++ is just adding a dependency with
no benefit.
If shs.cc is the problem we should fix it not to use "C++" stuff
(meaning the low-level libsupc++ code), by adding Zack's #pragma or
whatever else is required.
Tom