当前位置:   article > 正文

linux中的ELF文件有哪几类?(注意:静态库不是ELF文件)_elf 中类

elf 中类

       ELF = executable linkable format   可执行、链接格式

       linux中的中ELF文件主要包括四类, 也即:

       1.  a.out

       2.  core

       3.  so文件

       4.  .o文件


       上述1.2是可执行文件, 3和4是可链接文件, 所以1.2.3.4统称为可执行、链接文件, 也就是ELF文件,  分别看看:

taoge@localhost Desktop> file a.out 
a.out: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.4, dynamically linked (uses shared libs), for GNU/Linux 2.6.4, not stripped
taoge@localhost Desktop> 

taoge@localhost Desktop> file core 
core: ELF 32-bit LSB core file Intel 80386, version 1 (SYSV), SVR4-style, from 'a.out'
taoge@localhost Desktop>

taoge@localhost Desktop> file /lib/libc-2.4.so 
/lib/libc-2.4.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.4, not stripped
taoge@localhost Desktop> 

taoge@localhost Desktop> file html_util.o 
html_util.o: ELF 32-bit LSB relocatable, Intel 80386, version 1 (SYSV), not stripped
taoge@localhost Desktop> 

       问个问题, 静态库是ELF文件吗? 不是的! 你用file命令看看就知道了, 静态库只是.o文件的归档集合。





声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/849285
推荐阅读
相关标签
  

闽ICP备14008679号