我正在使用这个简单的链接器脚本:
MEMORY { boot_flash : ORIGIN = 0x1FC00000,LENGTH = 0xBF0 sfr : ORIGIN = 0x1F800000,LENGTH = 0x100000 program_flash : ORIGIN = 0x1D000000,LENGTH = 0x20000 ram : ORIGIN = 0x00000000,LENGTH = 0x8000 config0 : ORIGIN = 0xBFC02FFC,LENGTH = 0x4 config1 : ORIGIN = 0xBFC02FF8,LENGTH = 0x4 config2 : ORIGIN = 0xBFC02FF4,LENGTH = 0x4 config3 : ORIGIN = 0xBFC02FF0,LENGTH = 0x4}SECTIONS { .text : { *( .text ) } >boot_flash .text : { *(.text) } >program_flash .bss : { *( .bss ) } >ram .data : { *( .data ) } >ram .config0 : { *( .config0 ) } >config0 .config1 : { *( .config1 ) } >config1 .config2 : { *( .config2 ) } >config2 .config3 : { *( .config3 ) } >config3}
然后,我编译这个简单的代码:
...uint32_t config0 __attribute__ ((section(".config0"))) = 0xFFFFFFFF;uint32_t config1 __attribute__ ((section(".config1"))) = 0xFFFFAF0F;uint32_t config2 __attribute__ ((section(".config2"))) = 0xFFFFFDFF;uint32_t config3 __attribute__ ((section(".config3"))) = 0xFFFFFDFF;...
最后我用mips-elf-objdump检查生成的ELF文件.代码和数据都可以,但输出ELF中没有.config部分.
我究竟做错了什么?
解决方法 代码还可以.问题出在mips-elf-objdump上:我使用的是-d选项,它没有显示其他ELF部分: – /对不起,谢谢你的帮助! 总结
以上是内存溢出为你收集整理的链接描述文件部分不会出现在ELF上全部内容,希望文章能够帮你解决链接描述文件部分不会出现在ELF上所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)