mac环境下如何查看Android SO库的cpu架构?
readelf -a libxxxx.so
objdump -x libxxxx.so
greadelf -a libxxx.so
gobjdump -x libxxx.so
终端输入命令可能不支持,需要安装binutils
brew update
brew install binutils
安装出现问题和具体解决办法, 可以参考链接 https://blog.****.net/caojengineer/article/details/83268993
同时配置环境变量
export PATH="/usr/local/opt/binutils/bin:$PATH"
ojbdump -x libxxx.so && gobjdump -x libxxx.so
此命令作用:查看ELF头部或者其它各section的内容
readelf -a libxxxx.so && greadelf -a libxxx.so
此命令的作用 对指定的内容(.text, .data等)进行反汇编