当前位置: 技术问答>linux和unix
如何查看程序被哪个版本编译器编译的linux-gcc
来源: 互联网 发布时间:2017-01-11
本文导语: ubuntu下,我有一个执行文件,想知道是哪个版本的 gcc编译出来的,应该怎么做呢? | 那是不可能的,除非你加入了调试信息,也就是编译的时候加入了-g参数,然后用gdb调试就可以显示。最大程度上查...
ubuntu下,我有一个执行文件,想知道是哪个版本的
gcc编译出来的,应该怎么做呢?
gcc编译出来的,应该怎么做呢?
|
那是不可能的,除非你加入了调试信息,也就是编译的时候加入了-g参数,然后用gdb调试就可以显示。最大程度上查看一个elf文件信息。
如下,省略了很多内容。
如下,省略了很多内容。
$ readelf -Wa /bin/cp
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: Intel 80386
Version: 0x1
Entry point address: 0x8049fc0
Start of program headers: 52 (bytes into file)
Start of section headers: 117712 (bytes into file)
Flags: 0x0
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 8
Size of section headers: 40 (bytes)
Number of section headers: 32
Section header string table index: 31