In Linux, find the library in which a function is located.

Source: Internet
Author: User
In Linux, find the library in which a function is located-Linux general technology-Linux programming and kernel information. The following is a detailed description. Regarding how to find out which library file a library function is in, I want to find a work und to find out which library file the fcntl function is in:

1. Find an executable file using fcntl, such as test_fcntl. No. Compile a c file containing only fcntl functions and compile it.

2. Run the "ldd test_fcntl" command to track which library files are used for the executable file. Usually there may be several to dozens.

3. Based on the function to be searched and the name of each database file obtained in the previous step, let's roughly guess which or which database the function may belong.

4. Run the "nm test_fcntl" command to search for the database file obtained in step 3. Generally, you can determine the database in which the fcntl function is located.

For example, I used the above method to find out that the fcntl function is in the "/lib/tls/libc. so.6" library.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.