Static library and dynamic library creation steps

Source: Internet
Author: User
Static library and dynamic library creation steps-general Linux technology-Linux programming and kernel information. The following is a detailed description. How to Create a static Library:
Compile the Code as the target file:
# Gcc-c liberr. c-o liberr. o
Use the tool ar to create an archive file:
# Ar rcs liberr. a liberr. o
Link the program to liberr. a during program Compilation:
# Gcc errtest. c-o errtest-static-L./-lerr

How to create a dynamic library:
First, compile the target file:
# Gcc-fPIC-g-c liberr. c-o liberr. o
Then link to the Library:
# Gcc-g-shared-Wl,-soname, liberr. so-o liberr. so.1.0.0 liberr. o-lc
Copy the generated dynamic library liberr. so.1.0.0 to the/usr/lib directory:
# Cp liberr. so.1.0.0/usr/lib
Go to the/usr/lib directory and create two linked files:
# Cd/usr/lib
# Ln-s liberr. so.1.0.0 liberr. so.1
# Ln-s liberr. so.1.0.0 liberr. so
Link the compiled program with the dynamic library:
# Gcc errtest. c-o errtest-lerr
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.