AR archives, Shared objects y Static Objects: .a, .o , .so
Cómo convertir un AR archive (.a) lleno de static objects (.o) a un Shared Object (.so)
afiles are just (ar) archives of.oobject files, so all you need to do is unpack the archive and repackage them as a shared object (.so).ar -x mylib.a gcc -shared *.o -o mylib.so

