我在ARM9板上运行嵌入式应用程序,其总闪存大小仅为180MB.我能够运行gdb,但是当我这样做的时候
(gdb)generate-core-dump
我收到一个错误
warning: Memory read Failed for corefile section,1048576 bytes at 0x4156c000. warning: Memory read Failed for corefile section,1048576 bytes at 0x50c00000. Saved corefile core.5546 The program is running. Quit anyway (and detach it)? (y or n) [answered Y; input not from terminal] Tamper Detected **********OUTSIDE ifelse 0********* length validation is Failed
我还设置了ulimit -c 50000,但核心转储仍超过此限制.当我执行ls -l检查文件大小时,它超过300 MB.在这种情况下,我应该如何限制核心转储的大小?
解决方法
GDB不尊重’ulimit -c’,只有内核才这样做.
目前尚不清楚您是在目标板上还是在开发主机上运行GDB(并在目标上使用gdbserver).您可能应该使用后者,这将允许您收集完整的核心转储.
截断的核心转储无论如何都是一种痛苦,因为它们通常不会包含调试问题所需的信息.