我的設置:如何解決Eclipse Cdt斷點問題?
- 的Eclipse Neon.2(4.6.2)
- Kubuntu的16.04.2,64位
開始了我的Eclipse今天在生成文件項目→Debug As → Local C/C++ Application
調試會話(正如我以前做過幾百次)。 正如預期的那樣,調試器停止在main()中,調試器控制檯視圖顯示:
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Temporary breakpoint 1, main (argc=1, argv=0x7fffffffde68) at src/Main.cxx:169
169 {
我也是能步驟和監視變量等等,也Ctrl+R
(運行到線)的作品。
但由於未知原因,我無法使用eclipse設置斷點。
- 試圖雙擊文本編輯器的左邊緣,什麼都不做。
- 右鍵單擊(上下文菜單)&
Toggle Breakpoint
顯示一條消息「所選操作未啓用」,之後關閉的菜單條目變爲禁用(變灰)。
然而,我仍然能夠設置用gdb命令行(使用Eclipse調試控制檯視圖)斷點。
請注意,設置斷點在幾天前一直工作,但我不知道可能在我的設置中更改了什麼。
任何建議什麼可能是我的配置錯誤,以及如何解決這個問題?
Thx;所有檢查,但沒有解決問題。即使嘗試一個新的工作空間沒有成功。現在完全重新安裝eclipse(和所有插件)。 – Joe