在新的 Qt SDK 中,我收到\QtSDK\QtCreator\lib\qtcreatorcdbext32\qtcreatorcdbext.dll 无法找到错误
我安装了最新的Qt SDK。我看到虽然我的是 32 位 Windows XP,但安装会创建“qtcreatorcdbext64”目录而不是“qtcreatorcdbext32”目录。我得到了
“\QtSDK\QtCreator\lib\qtcreatorcdbext32\qtcreatorcdbext.dll”
启动可执行文件时出现
错误。将“qtcreatorcdbext64”目录重命名为“qtcreatorcdbext32”时,我得到
调用 LoadLibrary(qtcreatorcdbext) 失败,Win32 错误 0n193 “%1 不是有效的 Win32 应用程序。”请检查您的调试器配置和/或网络访问
错误。哪里可以获得 32 位版本的“qtcreatorcdbext.dll”?有人遇到这个错误吗?我做错了什么吗?
I installed the latest Qt SDK. I see that though mine is a 32-bit Windows XP, the installation creates "qtcreatorcdbext64" directory instead of "qtcreatorcdbext32" directory. I get the
"\QtSDK\QtCreator\lib\qtcreatorcdbext32\qtcreatorcdbext.dll"
error on launching the executable.
On renaming the "qtcreatorcdbext64" directory to "qtcreatorcdbext32", I get the
The call to LoadLibrary(qtcreatorcdbext) failed, Win32 error 0n193
"%1 is not a valid Win32 application." Please check your debugger configuration and/or network access
error. Where to get the 32-biut version of "qtcreatorcdbext.dll"? Have anyone got this error? Am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发现这是最新 QtSDK 的问题,并且已经报告。
请参阅 QtDeveloperForum 和 Qt JIRA
Found it is an issue with the latest QtSDK and is already reported.
Refer QtDeveloperForum and Qt JIRA
出现此错误“...无法找到 qtcreatorcdbext.dll”是因为 Qt 安装中缺少 qtcreatorcdbext32 和 qtcreatorcdbext64 文件夹。
如果您有旧版本的Qt,例如Qt5.9.6,您可以将qtcreatorcdbext32和qtcreatorcdbext64文件夹从\Tools\QtCreator\lib\复制到新的\Tools\QtCreator\lib。这些文件夹包含丢失的 qtcreatorcdbext.dll。
我不再收到错误了。
This error "....qtcreatorcdbext.dll cannot be found" happens because the qtcreatorcdbext32 and qtcreatorcdbext64 folders are missing from the Qt installation.
If you have an older version of Qt, e.g. Qt5.9.6, you can copy the qtcreatorcdbext32 and qtcreatorcdbext64 folders from \Tools\QtCreator\lib\ to the new \Tools\QtCreator\lib. These folders contain the missing qtcreatorcdbext.dll.
I don't get the error anymore.