Undefined reference to ...

Source: Internet
Author: User

Linux under programming appears undefined reference to ...

Cause Analysis:

1, the link is missing the relevant target file (. o)

2. The link is missing the relevant library file (. a/.so)

3. Another library file is used in the linked library file

4 Multiple library file link order issues

When you give the libraries you depend on in a link command, you need to be aware of the order of dependencies between libraries, and libraries that depend on other libraries must be placed in front of the dependent libraries, so that you can really avoid undefined reference errors and complete the compile link.

5. Linking C-language libraries in C + + code

Reference http://blog.csdn.net/aiwoziji13/article/details/7330333

Specific to the use of live555 static libraries in QT, you need to

LIBLIVEMEDIA.A libgroupsock.a libbasicusageenvironment.a LIBUSAGEENVIRONMENT.A copied to the compiled tree directory.
Then add the four library file order to the QT Creator Pro file, as

LIBS + = libgroupsock.a
LIBS + = Liblivemedia.a
LIBS + = Libbasicusageenvironment.a
LIBS + = Libusageenvironment.a

Undefined reference to ...

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.