Convert a Static Library to a Shared Library?
You can't do this if objects within static library was compiled without -fPIC or like.
Does this (with appropriate -L's of course)
gcc -shared -o megalib.so foo.o bar.o -la_static_lib -lb_static_lib
Not do it?