This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj -c [lots of long pathnames].java
- From: Tom Tromey <tromey at redhat dot com>
- To: Thomas Womack <twomack at globalphasing dot com>
- Cc: java at gcc dot gnu dot org
- Date: 26 Oct 2006 12:14:37 -0600
- Subject: Re: gcj -c [lots of long pathnames].java
- References: <Pine.LNX.4.63.0610261916440.1140@laue.globalphasing.com>
- Reply-to: tromey at redhat dot com
>>>>> "Thomas" == Thomas Womack <twomack@globalphasing.com> writes:
Thomas> Consider a command line like
Thomas> gcj -c mathlib/vector/Vector.java insects/mosquito/Vector.java
Thomas> Is there a way of getting the .o files to appear as
Thomas> mathlib/vector/Vector.o and insects/mosquito/Vector.o ?
There's no way to do this with a single command line.
You can compile each separately:
gcj -c -o mathlib/vector/Vector.o mathlib/vector/Vector.java
gcj -c -o insects/mosquito/Vector.o insects/mosquito/Vector.java
Tom