.ARM.exidx

简介:

简介:

`.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 = .;

 

在andriod 4.2 hisiv200上能够通过 -fuse-ld=bfd 此选项解决(ld当使用bfd图书馆与其他兼容格对象文件的类型)

版权声明:本文博客原创文章,博客,未经同意,不得转载。





本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/4717835.html,如需转载请自行联系原作者


相关文章
|
4月前
|
Shell 应用服务中间件 Linux
已解决:Cannot find ./catalina.sh The file is absent or does not have execute permission This file is ne
已解决:Cannot find ./catalina.sh The file is absent or does not have execute permission This file is ne
42 0
|
11月前
|
容器
解决java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes......
解决java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes......
647 0
解决java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes......
|
Linux 数据安全/隐私保护 知识图谱
6.2.2 复制、删除与移动: cp, rm, mv
6.2.2 复制、删除与移动: cp, rm, mv
98 0
rm -rf / 真的能删除所有东西吗?
rm -rf / 真的能删除所有东西吗?
rm -rf / 真的能删除所有东西吗?
ROOT_DIR=os.path.abspath(os.path.join(p, '..', 'data/raw/'))代码含义
这行代码的作用是设置一个名为 ROOT_DIR 的变量,其值为指向项目根目录下的"data/raw/"目录的绝对路径。下面是对每个部分的详细解释: os.path.abspath():这个函数返回参数路径的绝对路径,也就是完整路径,包括盘符或根目录和所有子目录。 os.path.join(p, '..', 'data/raw/'):这个函数使用操作系统特定的路径分隔符将参数连接起来,并返回一个新的路径。这里,它连接了当前工作目录(也就是代码所在的目录)的父目录("..") 和"data/raw/",生成了一个相对路径。 p:这是一个之前定义过的变量,代表了当前工作目录的路径。 ROOT_DI
121 0
CentOS cp 复制隐藏文件提示 cp: cannot stat ?.xxx*?. No such file or directory
执行的命令与错误信息: # cp -a /etc/skel/* /home/postgrescp: cannot stat ?.etc/skel/*?. No such file or directory 使用cp复制普通文件时,可以使用 * 号通配符,而在复制隐藏文件时,需要使用.
4574 0
|
关系型数据库 数据库 Shell