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]

Re: personal library with gcj


Stefan wrote:
> How can i make such a library?

It works just like building C and C++ libraries...

$ gcj -o Foo.o -O2 -c Foo.java
$ gcj -o Bar.o -O2 -c Bar.java
$ ar cru libmylib.a Foo.o Bar.o

AG



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