This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: How to create .a-Libs from jars?
- From: Tom Tromey <tromey at redhat dot com>
- To: Linuxhippy <linuxhippy at web dot de>
- Cc: java at gcc dot gnu dot org
- Date: 07 Jan 2003 13:34:02 -0700
- Subject: Re: How to create .a-Libs from jars?
- References: <3E1B4526.80405@web.de>
- Reply-to: tromey at redhat dot com
>>>>> ">" == Clemens Eisserer <linuxhippy@web.de> writes:
>> Is it possible to create statically libs out of .jar-Files directly?
>> gcj -c -shared xy.jar -o xy.so
>> gives me the dynamic-lib, is it also possible to create static-libs in
>> the same way?
You can create a .o file that you then put into a .a file.
Tom