qcustomplot.obj:-1: error: LNK2019: 无法解析的外部符号
时间: 2023-10-01 07:10:56 浏览: 157
如何解决 error LNK2019 无法解析的外部符号,该符号在函数 中被引用
5星 · 资源好评率100%
This error message is in Chinese and it roughly translates to:
qcustomplot.obj:-1: error: LNK2019: Unresolved external symbol
This error message typically indicates that the linker is unable to find a reference to an external symbol or function that is required by the program. This could be due to a missing library or incorrect linking settings.
To resolve this issue, you may need to check your project settings and make sure that all the required libraries are included and linked correctly. You may also need to ensure that the correct headers are included in your source files.
If you are using a third-party library like qcustomplot, you may need to make sure that you have installed it correctly and that it is compatible with your development environment. You may also need to consult the documentation or support resources for the library to troubleshoot this issue.
阅读全文