readelf 显示两个版本号
readelf displays two version numbers
我尝试 运行 使用 -h 选项读取 readelf,它显示了两个名为 Version 的字段,其中的数字都为 1。
它在其中一个字段中显示版本 1(当前),在另一个字段中显示版本 0x1。
这两个字段有什么意义?
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: <unknown>: 0xFFFF
Version: 0x1
Entry point address: 0x0
Start of program headers: 52 (bytes into file)
Start of section headers: 2384 (bytes into file)
Flags: 0x0
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 5
Size of section headers: 40 (bytes)
Number of section headers: 11
Section header string table index: 10
it displays two fields called Version
有两个版本:一个是e_ident
的一部分并标识ELF格式本身。另一个是 e_version
并标识 "object file version".
我不知道这两个字段有任何变化,所以实际上它们都是 1。
我尝试 运行 使用 -h 选项读取 readelf,它显示了两个名为 Version 的字段,其中的数字都为 1。
它在其中一个字段中显示版本 1(当前),在另一个字段中显示版本 0x1。
这两个字段有什么意义?
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: <unknown>: 0xFFFF
Version: 0x1
Entry point address: 0x0
Start of program headers: 52 (bytes into file)
Start of section headers: 2384 (bytes into file)
Flags: 0x0
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 5
Size of section headers: 40 (bytes)
Number of section headers: 11
Section header string table index: 10
it displays two fields called Version
有两个版本:一个是e_ident
的一部分并标识ELF格式本身。另一个是 e_version
并标识 "object file version".
我不知道这两个字段有任何变化,所以实际上它们都是 1。