What is the easiest way to create a library file using gcc?
I have been looking this up and a .a prefix seems to be a library style file (am I wrong??).
I am sure it must be simple to do.
Libraries
Re:Libraries
You need to use the ar utility.
ar crv library_name.a object1.o object2.o
ar crv library_name.a object1.o object2.o