Eclipse CDT 匯入 Makefile 構建的 C/C++ 工程

鍾超發表於2012-06-30

Eclipse CDT 匯入 Makefile 構建的 C/C++ 工程

  • 作者:柳大·Poechant(鍾超)
  • 郵箱:zhongchao.ustc#gmail.com(# -> @)
  • 部落格:Blog.CSDN.net/Poechant
  • 日期:June 30th, 2012

我是在 Mac OS X 上使用的 Eclipse CDT,Linux 和 Windows 版本的也相類似,一般只是 Preference 的位置不同。

  1. File -> New -> Makefile Project with Existing Code
  2. 選擇原始碼目錄,語言選擇C語言。如果是 Linux 環境,則選中 Linux GCC,Mac 環境則選擇 MacOSX GCC,Windows 下用 Eclipse 則可以選擇 MinGW GCC。
  3. Project -> Make Target -> Create,建立 all 和 clean 兩個 Targets。
  4. 在 Make Target 的 View 裡面選擇剛剛建立的專案的 all 來構建專案
  5. 構建結束後,Run -> Debug As -> Local C/C++ Application -> gdb/mi,除錯選項可以在 Debug Configuration 中設定。

其中 gdb/mi 和 gdb 的區別,在網上搜來如下解釋:

gdb and gdb/mi are essentially the same, except that gdb/mi lets you
select the MI protocol version and command set to use (MI - or Machine 
Interface - is how Eclipse communicates with gdb, rather than using 
the normal gdb command-line interface). This is useful if you want to 
do something not supported by the defaults, or have a non-standard gdb,
such as used on Mac OS X. gdbserver is a very lightweight debug server
used for debugging embedded systems. **The normal gdb/mi commands are 
used, but gdb must be told to connect to a gdbserver running on a remote 
system.** There's an extra tab for specifying this information.

Reference:

  1. http://dev.eclipse.org/mhonarc/lists/photran/msg00926.html
  2. http://blog.csdn.net/kevin_zqw/article/details/6927151

-

轉載請註明來自柳大的CSDN(鍾超):Blog.CSDN.net/Poechant

-

相關文章