gdb多檔案設定斷點

查志強發表於2014-06-08

【原文:http://blog.sina.com.cn/s/blog_5ac88b350100bwst.html

程式上下文:

可執行程式所在路徑:

/data2/……/bin/test

原始碼所在路徑:

/data2/……/src/

當前路徑:

/data2/……/bin/test

除錯過程:

gdb ./unittest2

錯誤跨檔案設定斷點方法:

1. b str_parser.cpp:StrParser::LocalSegment

2. b str_parser.cpp:LocalSegment

3. b str_parser.cpp:StrParser::LocalSegment()

 

正確設定方法:

1. b StrParser::LocalSegment

2. b str_parser.cpp:1361 (StrParser::LocalSegment所在行)


相關文章