This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]