2017-08-11 47 views
1

我希望在我的macOS Sierra上的Eclipse IDE中爲C/C++調試GNU Emacs。我使用Git下載了源代碼,並通過命令行成功構建了項目。然後,我使用GNU autotools工具鏈設置將項目導入Eclipse作爲現有的Makefile項目。'試圖用Eclipse調試GNU項目時'執行MI命令失敗:-exec-run'錯誤

我現在可以從Eclipse運行Emacs GUI。然而,當我嘗試調試它(使用gdb),我收到以下錯誤信息:

'Launching emacs-26.0.50.1' has encountered a problem. 

Error in final launch sequence 

Failed to execute MI command: 
-exec-run 
Error message from debugger back end: 
During startup program terminated with signal ?, Unknown signal. 
During startup program terminated with signal ?, Unknown signal. 

Error message

回答

0

我設法通過指定的.gdbinit路徑擺脫這種錯誤的文件在Run > Debug Configurations... > C/C++ Application > emacs-26.0.50.1 > Debugger > GDB command file:文本框中。

我現在得到一個不同的錯誤,但這是另外一個問題一個問題...

0

我有一個類似的錯誤信息,而使用調試器的小虛設碼。我使用了this link中的建議,並修復了它。總之,我不得不將調試器更改爲較舊的調試器。如果你仍然有同樣的問題,希望有所幫助。

+0

謝謝。實際上,我對Eclipse感到非常沮喪,因此我拋棄了它,轉而使用NetBeans,這非常棒。 –

相關問題