码迷,mamicode.com
首页 > 其他好文 > 详细

ELF文件之六——使用链接脚本-2个函数-data-bss-temp

时间:2020-02-09 20:18:16      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:hide   img   image   one   idt   字节   gif   lap   hid   

main.c

技术图片
int enable;
int test = 1;

int main()
{
    int temp;
    
    return 0;
}

int add()
{
    return 0;
}
View Code

elf反汇编结果如下,可以看出main函数中的栈多开了8字节,虽然局部变量只是int,占4字节(好像在哪儿看到过栈区是8字节对齐的

技术图片

 

ELF文件之六——使用链接脚本-2个函数-data-bss-temp

标签:hide   img   image   one   idt   字节   gif   lap   hid   

原文地址:https://www.cnblogs.com/yanhc/p/12288420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!