gpt4 book ai didi

C++ 新手 : Having all sorts of problems linking

转载 作者:行者123 更新时间:2023-11-28 01:13:38 25 4
gpt4 key购买 nike

我在 Visual Studio 2008 中遇到 tessdll 的几个问题。仅供引用,我将此应用程序创建为 MFC 应用程序,我这样做只是为了利用我需要的简单 GUI。它只是直接的 C++ 和 win32。

出于某种原因,这作为调试版本构建得很好(因为我已经包含了我需要的头文件和 lib 文件,并且 dll 驻留在我可以放置的每个目录中......)。

因此,在构建发布版本期间存在链接问题:

Linking...
MTGOBot.obj : error LNK2001: unresolved external symbol "__declspec
(dllimport) public: __thiscall TessDllAPI::TessDllAPI(char const
*)" (__imp_??0TessDllAPI@@QAE@PBD@Z)
MTGOBot.obj : error LNK2001: unresolved external symbol "__declspec
(dllimport) public: __thiscall TessDllAPI::~TessDllAPI(void)" (__imp_??
1TessDllAPI@@QAE@XZ)
MTGOBot.obj : error LNK2001: unresolved external symbol "__declspec
(dllimport) public: int __thiscall TessDllAPI::BeginPage(unsigned
int,unsigned int,unsigned char *,unsigned char)" (__imp_?
BeginPage@TessDllAPI@@QAEHIIPAEE@Z)
MTGOBot.obj : error LNK2001: unresolved external symbol "__declspec
(dllimport) public: struct ETEXT_STRUCT * __thiscall
TessDllAPI::Recognize_all_Words(void)" (__imp_?
Recognize_all_Words@TessDllAPI@@QAEPAUETEXT_STRUCT@@XZ)
C:\CPP Projects\Visual Studio 2008\Projects\MTGO SO Bot\MTGO SO Bot
\Release\MTGO SO Bot.exe : fatal error LNK1120: 4 unresolved externals

另外,作为引用,tessdll.h 的源代码可以在这里找到: http://code.google.com/p/tesseract-ocr/source/browse/trunk/tessdll.h?r=165

更多细节:

  • 我从工具栏调试并使用集成调试器。
  • 我使用 Batch构建以创建发布版本。

最佳答案

第一个猜测:您没有使用 DLL 的链接库。链接器大喊找不到某些符号,TessDllAPI 听起来很像 DLL。默认情况下(阅读:在项目设置对话框启动上)您的所有项目设置都特定于构建配置(调试、发布),但您可以从 GUI 中选择“所有配置”。这可以解释为什么它在一种配置中有效,但在另一种配置中无效。

试试

#pragma comment(lib:"tessdll")
// (Of course you need to replace the `tessdll` with the name of the library.)

在头文件中,或添加此库以在“发布”配置中进行链接。

关于C++ 新手 : Having all sorts of problems linking,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/512804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com