This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
how to reference a lib*.so instead of using -I blat.jar
- From: Heitzso <heitzso at growthmodels dot com>
- To: java at gcc dot gnu dot org
- Date: Wed, 15 Feb 2006 08:44:11 -0500
- Subject: how to reference a lib*.so instead of using -I blat.jar
Quick question ....
I have a jar, A, that is dependent on another jar, B.
Let's say I use gcj to compile B.jar down to a libB.so file.
Now, when I go to compile A down to libA.so, I'm currently
setting up the gcj command like:
gcj -I B.jar -c -o libA.so A.jar
What should I be doing instead to pick up the B.jar classes
from libB.so instead of from "-I B.jar"
Thanks,
Heitzso