美文网首页
linux查询静态库是arm平台还是x86平台

linux查询静态库是arm平台还是x86平台

作者: BigMZ | 来源:发表于2022-01-14 11:56 被阅读0次

    X86

    readelf -h libcrypto.a

    File: libcrypto.a(e_padlock.o)
    ELF Header:
    Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
    Class: ELF64
    Data: 2's complement, little endian
    Version: 1 (current)
    OS/ABI: UNIX - System V
    ABI Version: 0
    Type: REL (Relocatable file)
    Machine: Advanced Micro Devices X86-64
    Version: 0x1
    Entry point address: 0x0
    Start of program headers: 0 (bytes into file)
    Start of section headers: 248 (bytes into file)
    Flags: 0x0
    Size of this header: 64 (bytes)
    Size of program headers: 0 (bytes)
    Number of program headers: 0
    Size of section headers: 64 (bytes)
    Number of section headers: 11
    Section header string table index: 8

    objdump -p libcrypto.a

    e_padlock.o: file format elf64-x86-64

    ARM

    readelf -h libcrypto.a

    File: libcrypto.a(gost_sign.o)
    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: REL (Relocatable file)
    Machine: ARM
    Version: 0x1
    Entry point address: 0x0
    Start of program headers: 0 (bytes into file)
    Start of section headers: 3508 (bytes into file)
    Flags: 0x5000000, Version5 EABI
    Size of this header: 52 (bytes)
    Size of program headers: 0 (bytes)
    Number of program headers: 0
    Size of section headers: 40 (bytes)
    Number of section headers: 12
    Section header string table index: 9

    objdump -p libcrypto.a

    gost_sign.o: file format elf32-little

    相关文章

      网友评论

          本文标题:linux查询静态库是arm平台还是x86平台

          本文链接:https://www.haomeiwen.com/subject/tbsacrtx.html