This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: printing exceptions?
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Bryce McKinlay <bryce at waitaki dot otago dot ac dot nz>
- Cc: Alexandre Oliva <aoliva at redhat dot com>, tromey at redhat dot com, Java Discuss List <java at gcc dot gnu dot org>
- Date: Tue, 5 Mar 2002 23:26:56 -0500 (EST)
- Subject: Re: printing exceptions?
On Wed, 6 Mar 2002, Bryce McKinlay wrote:
> And the "gij" produced by this command works perfectly. Maybe it has
> something to do with -lpthread?
You must never link -lc ahead of -lpthread. The latter often overrides
symbols in the former (e.g. wait).
Jeff