1. 下載gdb for windows ,點此下載 windows
2.解壓後,將目錄添加到環境變量path app
3. 安裝sublimeGdb, 打開sublime text2 ,ctrl+shift+p, install package,選擇sublimeGdb,回車 ide
4.配置setting , 在sublime text2 中,選擇菜單 Preferences--Package settings--SublimeGdb--Setting Default ,設置其下兩項。workingdir是gopath的工做區,也就是項目exe生成的路徑。commandline 最重要是 spa
後面main.exe 替換成你的可執行文件。 調試
// Example: ${folder:/path/to/file} is replaced with "/path/to".
"workingdir": "D:/gopath/src/myapp",
// NOTE: You MUST provide --interpreter=mi for the plugin to work
"commandline": "gdb --interpreter=mi ./main.exe",
get
5.在sublime text2中,按f9 設置斷點, F5啓動調試界面。後面具體怎麼用gdb,我也不熟,請自行百度使用方法,但願朋友們找到後也共享下。 it