从readelf命令MIPS标志的含义?(Meanings of mips flags from r

2019-10-20 05:11发布

我已经执行命令“readelf -h测试”(“测试”是我的二进制程序)在Linux上,并得到了以下文字:

ELF header:
   Magic:  7f 45 4c 46 ....
   Data:   2's complement, little endian
   ...
   **Flags: 0x1007, noreorder, pic, cpic, o32, mips1**
   ...

能否请你让我知道在细节上面的文字标志的含义各?

我用Google搜索,但没有找到答案。 任何意见,将不胜感激。

Answer 1:

ELF头标志建筑特有的。 为MIPS只在定义SYSTEM V应用程序二进制接口

EF_MIPS_NOREORDER 0x00000001
EF_MIPS_PIC       0x00000002
EF_MIPS_CPIC      0x00000004
EF_MIPS_ARCH      0xf0000000


文章来源: Meanings of mips flags from readelf command?