ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

linux dumpcore (imx6)

2021-06-30 10:02:28  阅读:246  来源: 互联网

标签:core LWP linux EU New dumpcore imx6 gateway


https://developer.toradex.com/knowledge-base/enable-and-analyze-coredumps-in-linux

https://linux-audit.com/understand-and-configure-core-dumps-work-on-linux/

打开imx的系统dumpcore日志并分析日志文件找到崩溃的代码行
 

ulimit -H -c 8192
ulimit -S -c 8192
echo 1 > /proc/sys/kernel/core_uses_pid
echo "/data/core-%e-%s-%u-%g-%p-%t" > /proc/sys/kernel/core_pattern

分析dumpcore日志 ,使用交叉编译工作提供的gdb, XXX为交叉编译环境根目录

YYY为dumocore日志路径,ZZZ为debug的可执行文件路径

cross-gdb -ex 'set sysroot XXX' -ex 'core-file YYY' ZZZ

../x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-gdb -ex 'set sysroot .' -ex 'core-file ~/git_new/ledvance_professional_gateway_imx6ull/gateway-EU/Debug/core-gateway-EU-11-0-0-9133-1620442475' ~/git_new/ledvance_professional_gateway_imx6ull/gateway-EU/Debug/gateway-EU

GNU gdb (GDB) 8.0.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=x86_64-pokysdk-linux --target=arm-poky-linux-gnueabi".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /home/gateway/git_new/ledvance_professional_gateway_imx6ull/gateway-EU/Debug/gateway-EU...done.
[New LWP 9167]
[New LWP 9133]
[New LWP 9142]
[New LWP 9143]
[New LWP 9144]
[New LWP 9146]
[New LWP 9147]
[New LWP 9148]
[New LWP 9150]
[New LWP 9151]
[New LWP 9152]
[New LWP 9169]
[New LWP 9168]
warning: Could not load shared library symbols for /lib/libstdc++.so.6.
Do you need "set solib-search-path" or "set sysroot"?
Core was generated by `./gateway-EU'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  memcpy () at ../sysdeps/arm/armv7/multiarch/memcpy_impl.S:473
473    ../sysdeps/arm/armv7/multiarch/memcpy_impl.S: No such file or directory.
[Current thread is 1 (LWP 9167)]

killall -SIGSEGV gatewway-EU   终止进程并给它传递一个SIGSEGV信号

标签:core,LWP,linux,EU,New,dumpcore,imx6,gateway
来源: https://blog.csdn.net/MashiMaroJ/article/details/116524981

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有