使用 Eclipse CDT 进行调试时出现问题 - 执行和 GUI 未对齐

发布于 2024-11-29 12:14:16 字数 217 浏览 0 评论 0原文

我正在使用 Eclipse CDT 在 Ubuntu 中调试 C++ 项目。 GUI(即显示要执行的下一行源代码的小箭头)与实际执行不一致。具体来说,它比实际执行行低30行左右。我通过检查局部变量的值以及它们何时发生变化来确定实际的行是什么。

我曾多次尝试清理项目,包括手动删除所有已编译的目标代码、库等,希望这会导致 Eclipse 自行更新,但它坚持显示错误的行。

任何帮助表示赞赏。

I am using Eclipse CDT to debug a C++ project in Ubuntu. The GUI, i.e the small arrow showing the next line of source code to be executed, is not aligned with the actual execution. Specifically, it is about 30 lines below the actual executing line. I'm identifying what the actual line is by examining values of local variables and when they change.

I have tried cleaning the project several times, including manually deleting all compiled object-codes, libraries etc., in hope that it will cause Eclipse to update itself, but it insists on showing the wrong line.

Any help is appreciated.

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

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

发布评论

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

评论(2

半城柳色半声笛 2024-12-06 12:14:16

Eclipse 显示的源代码和实际用于编译可执行文件的源代码似乎很可能是同一文件的不同版本。

您可以使用 info source GDB 命令询问 GDB(Eclipse 有一个 GDB 控制台窗口)实际使用什么源来构建可执行文件,以及 GDB 在哪里找到它正在显示的源(向 Eclipse)。我敢打赌编译目录+当前源文件!=位于

It seems pretty likely that the source that Eclipse is showing, and the source that was actually used to compile the executable are different versions of the same file.

You can ask GDB (Eclipse has a console window for GDB) what source was actually used to build the executable, and where GDB found the source it is showing (to Eclipse) with info source GDB command. I bet the Compilation directory + Current source file != Located in.

镜花水月 2024-12-06 12:14:16

检查您的可执行文件是否是最新的。由于某种原因,eclipse 生成的 makefile 不包含对静态库的依赖项。如果您在项目中使用静态库,则可能需要手动重建它们。

Check your executable is up to date. For some reason the makefile eclipse generates doesn't include dependencies on static libraries. If you are using static libraries as part of your project, you may need to rebuild them manually.

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