Define the cpu architecture of a * nix static library

There is a static library, but I'm not sure compiled for sparc or x86 architecture. How to detect this on linux / unix?

thanks

+4
source share
1 answer

I found the objdump tool,

objdump -f FILE_NAME

+11
source

Source: https://habr.com/ru/post/1432246/


All Articles