GDB調試Go程式若干問題備忘

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

1. 很早之前寫過GDB調試簡單Go程式的文章,沒有帶命令列參數,最近再看一個開源項目需要用到帶命令列參數的調試。
如下:
查看協助得到如下:

gdb [options] --args executable-file [inferior-arguments ...]

例如:

gdb --args revel run github.com/yourihua/console

2. 載入 Go Runtime:

source /home/yourihua/go/src/pkg/runtime/runtime-gdb.py

或者在添加檔案 ~/.gdbinit,內容如下:

add-auto-load-safe-path ~/go/src/pkg/runtime/

原因如下:http://grokbase.com/t/gg/golang-nuts/12atrp2jwf/go-nuts-debugging-warning-when-loading-a-binary-runtime-gdb-py-auto-loading-has-been-declined

3. 如果需要將斷點打在非main包上,使用 b package.func 會出現如下提示:
Make breakpoint pending on future shared library load? (y or [n])
這時候只能使用 b filename:line 了,而且需要完整路徑,例如:

(gdb) b /home/yourihua/workplace/rhino/src/github.com/robfig/revel/revel.go:81Breakpoint 1 at 0x44eeaf: file /home/yourihua/workplace/rhino/src/github.com/robfig/revel/revel.go, line 81.

為了避免每次都輸入完整路徑,可以用dir添加搜尋路徑,如下:

(gdb) dir /home/yourihua/workplace/rhino/src/github.com/robfig/revel/Source directories searched: /home/yourihua/workplace/rhino/src/github.com/robfig/revel:$cdir:$cwd(gdb) b revel.go:86Breakpoint 2 at 0x44ef60: file /home/yourihua/workplace/rhino/src/github.com/robfig/revel/revel.go, line 86.

4. 不錯的文章:Introduction to Go Debugging with GDB,地址:http://lincolnloop.com/blog/2012/oct/3/introduction-go-debugging-gdb/

5. 關閉GDB時,發現未退出應用程式:

a. 尋找被佔用的連接埠
netstat -tln
netstat -tln | grep 8060
netstat -tln 查看連接埠使用方式,而 netstat -tln | grep 8060 則是只查看連接埠8060的使用方式
b. 查看連接埠屬於哪個程式?連接埠被哪個進程佔用
lsof -i:8060

yourihua@ubuntu:~$ lsof -i:9000COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMErevel 24739 yourihua 8u IPv6 576421 0t0 TCP *:9000 (LISTEN)yourihua@ubuntu:~$

c.殺掉佔用連接埠的進程 根據pid殺掉
kill -9 進程id
kill -9 24739

最後,感謝yuhen的熱心協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.