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

.ARM.exidx

时间:2014-06-22 00:31:07      阅读:618      评论:0      收藏:0      [点我收藏+]

标签:linker script

一介绍:

`.ARM.exidx` is the section containing information for unwinding the stack. If your C program has functions that print out a stack backtrace, the functions will likely depend on this section being present.

相关的编译选项 `-funwind-tables

 

二问题:

 

cannot locate symbol "__exidx_start" referenced by

 

可以在linker script中添加(诸如此类的未定义现象可以在linker script中解决 或者通过编译选项解决)

__exidx_start = .;

 .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } >sram

 __exidx_end = .;

.ARM.exidx,布布扣,bubuko.com

.ARM.exidx

标签:linker script

原文地址:http://blog.csdn.net/jianchenglee/article/details/32705643

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