Code Comments
Programming Forum and web based access to our favorite programming groups.Is there a command to list the contents of a shared object library (.so) fil e. For an archive file the command is ar t name.ar What is the equivalent for .so files? Thanks, Peter.
Post Follow-up to this messageMajorSetback@excite.com (PeterOut) writes: > Is there a command to list the contents of a shared object library (.so) f ile. > For an archive file the command is > ar t name.ar > > What is the equivalent for .so files? nm is probably the closest you'll get. -- Måns Rullgård mru@inprovide.com
Post Follow-up to this messageMajorSetback@excite.com (PeterOut) writes: > What is the equivalent for .so files? There is no equivalent, because (unlike .a) a .so is "fully linked" and can't be "unarchived". You can think of .a as a bunch of magazine issues in a box -- you can extract 1, 2, or all of them separately. When linked into .so, they are now "bound together" as a hard-cover volume (such as you might find in a scientific library). The closest to 'ar t libfoo.a' is 'ls libfoo.so' Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email.
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.