查看DLL或者so文件信息

1、查看依赖库

readelf -d test.so

readelf -a test.so|grep "Shared"

2、查看头信息

readelf -h test.so

3、查看so内容

1) nm -D  xx.so

2) objdump -tT xx.so

你可能感兴趣的:(查看DLL或者so文件信息)