Click to See Complete Forum and Search --> : linux file type question


leohung
04-28-2001, 02:43 PM
what is .so file &
what is .a file.
are they the same?

Muzzafarath
04-28-2001, 03:27 PM
.so = shared object.
.a = archive of functions.

leohung
05-03-2001, 04:46 AM
So how to use the .a file to produce .so file

DMR
05-03-2001, 05:38 AM
So how to use the .a file to produce .so fileAs far as I know, you don't. What Muzzfarath was alluding to is the fact that .so files are shared libraries, and .a files are static libraries. While both types are libraries, the method and syntax used to create each type is different, as are the internal workings of each.