gcj -c [lots of long pathnames].java
Tom Tromey
tromey@redhat.com
Thu Oct 26 18:22:00 GMT 2006
>>>>> "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
More information about the Java
mailing list