Gary Kumfert <[EMAIL PROTECTED]> writes: > Maybe someone knows a reason why I can't simultaneously have static *.a > and dynamically loadable *.so on AIX... just like I do for > Linux/Solaris? If so, I'd like to understand why.
AIX traditionally uses a completely different library format than other systems. Both the shared and the static objects are supposed to go into the same .a file, and the linker will chose whichever is appropriate. This means that .a files on an AIX system may be used at runtime and may actually be shared libraries. I don't know how much of that, if any, AIX 5.x changed. -- Russ Allbery ([EMAIL PROTECTED]) <http://www.eyrie.org/~eagle/> _______________________________________________ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool
