链接 C++ - BDB - LNK2001

发布于 2024-08-16 11:29:19 字数 379 浏览 3 评论 0原文

BDB是在同一台PC上、同一VS下编译的。

#include; int main(){ db b(NULL, 0); 返回0; 1> main.obj

1>main.obj : 错误 LNK2001: 无法解析的外部符号 ""public: virtual __thiscall Db::~Db(void)" (??1Db@@UAE@XZ)"

: 错误LNK2001:无法解析的外部符号“”public:__thiscall Db :: Db(class DbEnv *,unsigned int)”(??0Db@@QAE@PAVDbEnv@@I@Z)”

可能出了什么问题?

BDB is compiled on the same PC, under same VS.

#include <db_cxx.h>
int main(){
Db b(NULL, 0);
return 0;
}

1>main.obj : error LNK2001: unresolved external symbol ""public: virtual __thiscall Db::~Db(void)" (??1Db@@UAE@XZ)"

1>main.obj : error LNK2001: unresolved external symbol ""public: __thiscall Db::Db(class DbEnv *,unsigned int)" (??0Db@@QAE@PAVDbEnv@@I@Z)"

what could be wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

审判长 2024-08-23 11:29:19

您是否记得链接通过编译 BDB 创建的二进制文件?

Did you remember to link in the binary created by compiling BDB?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文