What can I do if "undefined reference to ...." is displayed when I use a streaming media SDK for compilation?
Last Updated on:2024-08-21 02:08:40
Target files are missing during link connection.
Library files are missing during link connection.
Another library file is used in the linked library file.
The linking sequence of library files is incorrect. The library that depends on other libraries must be placed in front of the depended library.
The definition of a referenced interface is inconsistent with the actual implementation of the interface.
In the C++ code, a library using C language is linked. (Solution: Add statement of extern "C" in related files.)
Is this page helpful?
YesFeedback