Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 linux 下的 RX 平台进行交叉编译,但是如何检查该库是否是为正确的平台构建的?
有谁知道linux下的命令是什么?
您可以使用命令file查看手册页来获取文件的元信息。例如,编译它的架构。
file
如果输出是 ELF 格式(您可以通过键入来确定file <filename>),那么您可以使用readelfand/orobjdump命令来检查它。
file <filename>
readelf
objdump