This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Linking with DOM
- From: Tom Tromey <tromey at redhat dot com>
- To: Per Bothner <per at bothner dot com>
- Cc: java at gcc dot gnu dot org
- Date: 15 Apr 2005 10:13:04 -0600
- Subject: Re: Linking with DOM
- References: <425F2E12.50602@bothner.com>
- Reply-to: tromey at redhat dot com
Per> In my quest to build as much of Kawa as possible using GCJ-4.0,
Per> I'm now trying to build various classes that depend on org.w3c.dom.
Per> I can compile OK, but when I link I get a lot of undefined references:
This is a dumb Makefile bug. Patch to follow.
Per> (I am willing to switch to the new ABI if that is recommded.)
Yeah, you'll probably want to.
In order to support java.endorsed.dirs, we have to compile the DOM and
other XML code BC. It doesn't really make sense for C++ ABI code to
refer to BC ABI code.
Tom