This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj-mingw is ready for inclusion in gcc 3.1
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Anthony Green <green at redhat dot com>
- Cc: Adam Megacz <gcj at lists dot megacz dot com>, java at gcc dot gnu dot org
- Date: Sun, 10 Mar 2002 09:15:54 -0500 (EST)
- Subject: Re: gcj-mingw is ready for inclusion in gcc 3.1
On 9 Mar 2002, Anthony Green wrote:
> IIRC, we've got libgcj.a, but no libgcj.dll. What needs to be done to
> get that working?
Figure out how to dllimport class data, static fields, vtables, etc. That
could get ugly because the dllimport can't be done at link time
(as dllexport can).
When compiling something like
class B extends A { ...
how can the compiler possibly know whether or not A will be resolved in
the same DLL as B?
Jeff