c - 为什么编译器版本出现在我的 ELF 可执行文件中?

标签 c linux gcc elf

我最近使用 gcc 在 Debian Linux 下编译了一个简单的 hello world C 程序:

gcc -mtune=native -march=native -m32 -s -Wunused -O2 -o hello hello.c

文件大小为 2980 字节。我在十六进制编辑器中打开它,我看到了以下几行:

GCC: (Debian 4.4.5-8) 4.4.5 GCC: (Debian 4.4.5-10) 4.4.5 .shstrtab .interp .note.ABI-tag .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt data.data .bss .comment

他们真的需要吗?没有办法减少可执行文件的大小?

最佳答案

使用 -Qn 来避免这种情况。

aa$ touch hello.c
aa$ gcc -c hello.c 
aa$ objdump -s hello.o 

hello.o:     file format elf32-i386

Contents of section .comment:
 0000 00474343 3a202844 65626961 6e20342e  .GCC: (Debian 4.
 0010 372e322d 35292034 2e372e32 00        7.2-5) 4.7.2.   
aa$ gcc -Qn -c hello.c 
aa$ objdump -s hello.o 

hello.o:     file format elf32-i386

aa$ gcc -v 
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i486-linux-gnu/4.7/lto-wrapper
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.7.2 (Debian 4.7.2-5) 
aa$ 

关于c - 为什么编译器版本出现在我的 ELF 可执行文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6263425/

相关文章:

python - Python 和 C 的结果之间的差异

我们真的可以使用 Static 来限制全局变量的范围吗?

c - 这个函数的原型(prototype)看起来如何才能可编译?

c - 两个独立进程之间的共享变量

linux - gprof 显示一个简单的信号处理程序占用大量 CPU

c - bash : ./comp.out:权限被拒绝

c - C 中的整数除法将值向下舍入/结果为零

linux - 如何解读/proc/bus/pci/devices的内容?

c - %ms 和 %s scanf 之间的区别

c++ - 例如,C++0x auto 关键字的含义?