This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: How to list all calls a library contained?
- To: Yiyan Yang <nforiuse at 263 dot net>
- Subject: Re: How to list all calls a library contained?
- From: Eric Christopher <echristo at cygnus dot com>
- Date: Wed, 15 Nov 2000 01:07:15 -0800
- CC: gcc-help at gcc dot gnu dot org, gcc at gcc dot gnu dot org, Yiyan Yang <yyylj at 263 dot net>
- References: <010701c04edc$dd4ac390$4d049c3d@yangyy>
You'll want to look at info to find out the number of functions in a
library. Otherwise you need to write better questions.
nm foo.a | wc -l
or info nm.
-eric