This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gcj -c [lots of long pathnames].java


>>>>> "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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]