Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不再了解 PCRE 以在 DevC++ 的项目中工作。当我执行以下功能时,它总是会产生错误代码:
#include <pcre.h>
你知道吗,它不是关于no such file or directory bla... bla...但它说Linker error,我搜索,谷歌搜索并尝试一些教程,并阅读文档。结果是 0。我想知道为什么人们这么容易解决这个问题。愚蠢的我。也许你比我聪明。
no such file or directory bla... bla...
Linker error
和重点
链接器错误通常意味着你有一个函数的定义,但不是它的实现。在这种情况下,与大多数情况一样,您包含了包含 pcre 函数定义的头文件,但您没有链接库。您应该链接库(项目选项)并重新编译。