This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: objdump or nm exported symbols (was: Linker exposing private symbols)
- From: Nick Clifton <nickc at redhat dot com>
- To: noloader at gmail dot com, Binutils <binutils at sourceware dot org>
- Date: Mon, 3 Sep 2018 15:58:34 +0100
- Subject: Re: objdump or nm exported symbols (was: Linker exposing private symbols)
- References: <CAH8yC8=NziSpjz+pYKiYSujSnVWH7nfta5=T-rRFOGRoHwFEtg@mail.gmail.com>
Hi Jeff,
> Alan, Since I have you on the line...
>
> Is there a more succinct way to objdump or nm only exported symbols,
> without warts like:
>
> nm -gCD sha256_wrapper.so | grep ' T '
[replying for Alan since he is probably very busy].
No. :-(
Probably the closest that you will get is:
nm --defined-only --extern-only <foo>
But this will include exported data symbols as well as function symbols.
Cheers
Nick