From: Steve Graegert <graegerts@gmail.com>
To: raja <vnagaraju@effigent.net>
Cc: linux-c-programming@vger.kernel.org
Subject: Re: Shared Object
Date: Thu, 1 Sep 2005 07:57:37 +0200 [thread overview]
Message-ID: <6a00c8d505083122576fa92808@mail.gmail.com> (raw)
In-Reply-To: <43168ED6.4060204@effigent.net>
On 9/1/05, raja <vnagaraju@effigent.net> wrote:
> Thank you so much,
> I need the list of files that in the shared object.I think it is not
> possible with nm or objdump.
I suppose you want to list object files that are imported by a certain
object file. This is what ldd does. Example:
% ldd myapp
libpthread.so.0 => (0x4002d000)
libmysharedlib.so => (0x40042000)
libc.so.6 => (0x4005b000)
ld-linux.so.2 => (0x40000000)
...
An object file does not contain other object files, but references to
dependent libraries. Hope this is what you're looking for.
Regards
\Steve
> Steve Graegert wrote:
> On 9/1/05, raja <vnagaraju@effigent.net> wrote:
> Hi,
Can anyone help me how to see list of object files that are in a
shared
> object.(.so file)
> You probably mean listing all symbols exported by an object file. If
so, try
> nm, objdump and their friends.
next prev parent reply other threads:[~2005-09-01 5:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-01 4:14 Shared Object raja
2005-09-01 5:24 ` Steve Graegert
[not found] ` <43168ED6.4060204@effigent.net>
2005-09-01 5:57 ` Steve Graegert [this message]
2005-09-01 11:49 ` Ronaldo.Afonso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6a00c8d505083122576fa92808@mail.gmail.com \
--to=graegerts@gmail.com \
--cc=linux-c-programming@vger.kernel.org \
--cc=vnagaraju@effigent.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).