我在Eclipse上调试Java应用程序时过得很愉快,但是最近我正在使用Eclipse CDT在Ubuntu 12.04上开发C/C++,在调试时它会忽略断点!我已经尝试了Eclipse CDT的两个版本CDT 8.4.0 for Eclipse Luna,但是也不起作用。有人可以帮忙吗?
注意:我知道还有其他类似的问题,但是我认为最好问这个问题,该问题专门针对Eclipse Luna的CDT 8.4.0。
最佳答案
eclipse-cdt仅随附用于构建c/c++应用程序的必需工具。它不随gdb一起提供。您需要单独安装
How do I use GDB in Eclipse for C/C++ Debugging?
从上面的链接,这些是要执行的步骤。
1. Go to Help > Install New Software.
2. Add the CDT repository http://download.eclipse.org/tools/cdt/releases/8.4 to the list of repositories.
3. Select the CDT Repository. Now you need to install the CDT plugin along with GDB support from the list of available plugins (Select the CDT Main Features as well as CDT GNU Toolchain Debug support).
我更新了CDT存储库路径以与您的发行版(Luna)相对应。
关于c++ - 断点在Eclipse Luna for Linux的CDT 8.4.0上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24638912/