QT4 GDB 调试器不链接到 Ubuntu 上的共享库

发布于 2024-08-21 09:43:24 字数 375 浏览 8 评论 0原文

我是 UNIX 和 QT4 的新手,但 ubuntu 正在出现。我的第一个 QT4 项目将一个简单的测试应用程序链接到移植代码的共享 dll。我能够使用 QT Creator 构建应用程序并从终端运行它。然而,嵌入式 GDB 调试器报告:无法加载共享...没有这样的文件或目录。

.pro 文件包含行 LIBS += /home/aurel/VISUALAGEPORTS/libVISUALAGEPORTS.so.1.0.0

我能够恢复到确实运行的备份版本。然而,我第一次尝试调试恢复的版本时遇到了同样的错误。第二次尝试神秘地成功了,没有任何改变。

有谁知道为什么 QT Creator 会正确链接并生成从终端运行而不是从嵌入式调试器运行的可执行文件?

感谢您的任何想法

I'm new to UNIX and QT4 but ubuntu is coming along. My first QT4 project links a simple test app to a shared dll of ported code. I am able to build the application using QT Creator and to run it from the terminal. However the embedded GDB debugger reports: unable to load shared ... no such file or directory.

The .pro file contains the line LIBS += /home/aurel/VISUALAGEPORTS/libVISUALAGEPORTS.so.1.0.0

I was able to revert to a backup version which does run. However, the 1st time I tried to debug the restored version I encountered the same error. The second attempt mysteriously worked with no changes.

Does anyone know why the QT Creator would link correctly and produce an executable that runs from the terminal but not from the embedded debugger?

Thanks for any ideas

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

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

发布评论

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

评论(1

各自安好 2024-08-28 09:43:24

您可以通过 LD_LIBRARY_PATH 变量指定共享对象的搜索路径。我不确定如何从 QT Creator 中执行此操作,但如果我从命令行运行 gdb,我会这样做:

LD_LIBRARY_PATH=/home/aurel/VISUALAGEPORTS/ gdb path_to_executable.

试一试。

You can specify a search path for shared objects via LD_LIBRARY_PATH variable. I'm not sure how to do that from within QT Creator, but if I was running gdb from command line, I'd so something like this:

LD_LIBRARY_PATH=/home/aurel/VISUALAGEPORTS/ gdb path_to_executable.

Give that a go.

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