reflection support?
Jeff Sturm
jsturm@one-point.com
Fri Apr 11 04:22:00 GMT 2003
On 11 Apr 2003, Marilen Corciovei wrote:
> Well, in the end I got my engine in a 4.6Mb
> exe file. What I did not realized is that since I used a lot reflection
> nothing seems to work except some error messages.
The hazards of reflection and static linking (as appears to be your
situation) is that needed classes may not be linked into the final
executable if they aren't directly referenced in code.
How are you linking your final executable? If you are using archive (.a)
files, you can place -Wl,--whole-archive .... -Wl,--no-whole-archive
around libraries you need to link in their entirety.
The downside is that your executable may end up significantly larger.
Jeff
More information about the Java
mailing list