This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: undefined references
>>>>> "Santosh" == Santosh Cheler <csk4you@hotmail.com> writes:
>> 2. Does this compile all the classes in xerces.jar and statically
>> link them in the output executable? If yes, my executable will
>> then be very big if I use large number of jar files.
Santosh> seems to be yes. Can I make it link at runtime?
Yes, you can make it link at runtime.
Compile the .jar to a .so, then link that with your program.
Tom