This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Library functions


> Date: Sat, 17 Jun 2000 18:36:20 -0600
> To: gcc-bugs@gcc.gnu.org
> From: Roland Silver <rollo@artvark.com>

> I'm trying to port a large program I wrote in Think-C to i386 Linux 
> GCC, and need to know the list of all available library functions.

gcc doesn't have any, this isn't a bug in gcc.

> I tried man 3 intro but it only told me of the existence of 3C, 3M,
> 3S, etc, but not what functions are in those subcategories, or how
> to list them.

Do a nm `find / -name \*.a -print` `find / -name \*.so.*` `find /
-name \*.so` | grep ' T ' to find a list of the symbols you can use.

You can then try and figure out where to find the documentation.  This
list _is_ the wrong place to find the documentation.  On my system,
there are about 151,347 symbols.

:-)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]