Determine target ISA extensions of binary file in Linux (library or executable)

后端 未结 6 1177
太阳男子
太阳男子 2020-12-23 11:35

We have an issue related to a Java application running under a (rather old) FC3 on an Advantech POS board with a Via C3 processor. The java application has several compiled

6条回答
  •  伪装坚强ぢ
    2020-12-23 12:04

    Quickest thing to find architecture would be to execute:

    objdump -f testFile | grep architecture
    

    This works even for binary.

提交回复
热议问题