有時(shí)候需要去檢查哪些代碼調(diào)用了某些接口,但是經(jīng)常發(fā)生的問(wèn)題是,某些模塊,實(shí)際上看不到代碼,只能看到庫(kù)文件。這種情況下,可借助GNU工具來(lái)檢查。
先寫個(gè)簡(jiǎn)單的測(cè)試代碼:
$ cat PCString.h
#ifndef __PCSTRING_H__
#define __PCSTRING_H__
class PCString
{
public:
static bool Copy(const char *from, char *to, int size);
};
#endif //__PCSTRING_H__
$ cat PCString.cpp
#include “PCString.h”
bool PCString::Copy(const char *from, char *to, int size)
{
}
g++ -g -c PCString.cpp -o PCString.o
ar -rsv libPCString.a PCString.o
$ cat test2.cpp
#include “PCString.h”
void fun(void)
{
char test[10];
PCString::Copy(“AAAA”, test, 10);
}
g++ test2.cpp -g -c -o test.o
ar -rsv libTest.a test.o
假如,我們要檢查哪些地方調(diào)用了 PCString::Copy(), 但是又看不到test2.cpp文件,只能看到 libTest.a。
1)使用 readelf:
2)使用 nm
3)如果 庫(kù)文件是 debug版的(可以反匯編出源碼),也可以用 objdump:
另外,這些工具也可以查詢某個(gè)模塊定義哪些可供外部使用的符號(hào)。
-
工具
+關(guān)注
關(guān)注
4文章
307瀏覽量
27713 -
虛擬機(jī)
+關(guān)注
關(guān)注
1文章
906瀏覽量
28027 -
gun
+關(guān)注
關(guān)注
0文章
6瀏覽量
7625
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論