This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj
- From: Tom Tromey <tromey at redhat dot com>
- To: Jayakrishnan M <jak_76_in at yahoo dot com>
- Cc: java at gcc dot gnu dot org
- Date: 02 Jan 2003 10:41:25 -0700
- Subject: Re: gcj
- References: <20030102070418.59126.qmail@web40908.mail.yahoo.com>
- Reply-to: tromey at redhat dot com
>>>>> ">" == Jayakrishnan M <jak_76_in@yahoo.com> writes:
>> 1. Does a program compiled into native executable
>> using gcj still require the presence of a jvm. If in
>> my program, I doesn't use awt or swing, can I
>> completely eliminate the big jre when distributing the
>> program ?
A program compiled by gcj requires libgcj.so to be available. This
may or may not include the whole JVM (depending on platform), but it
always includes compiled forms of the standard classes.
>> 2. Does gcj supports IBM swt on win and lin ?
Yes.
>> 3. Does the gcc runtime system has its own jvm ? Or
>> does I have to bundle a jvm with my app in order to
>> run it on the linux platform ?
It includes its own.
Tom