How can I effectively debug C code that#39;s wrapped with JNI in Eclipse? (Android Dev)(如何在 Eclipse 中有效地调试用 JNI 包装的 C 代码?(安卓开发))
问题描述
我有一个段错误,但我完全不知道如何找到它.
I've got a segfault but I have absolutely no idea how to locate it.
提示?
推荐答案
可以使用Android NDK Stacktrace Analyzer.
这些步骤在 wiki 上,但是基本上你需要从 logcat 获取堆栈跟踪到一个文件 (adb logcat > mycrash.log
),然后将你的库转储到一个文本文件,然后在它们两个上运行程序.这是我用来做很多事情的 shell 脚本:
The steps are on the wiki, but basically you need to get the stack trace from logcat into a file (adb logcat > mycrash.log
), then dump your library to a text file, then run the program on the two of them. Here's the shell script I use to do the lot:
#!/bin/sh
if test $# -lt 2 ; then
echo "Extract readable stack trace from Android logcat crash"
echo "Usage $0 lib.so crash.log"
exit 1
fi
of=$(mktemp)
echo "Disassemble $1"
~/tools/android-ndk-r5/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-objdump -S $1 > $of
echo "Parse stack trace in $2"
~/bin/parse_stack.py $of $2
根据需要更改 Android NDK 和 parse_stack.py 文件的路径.
Change the paths to the Android NDK and parse_stack.py file as you need.
这篇关于如何在 Eclipse 中有效地调试用 JNI 包装的 C 代码?(安卓开发)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Eclipse 中有效地调试用 JNI 包装的 C 代码
基础教程推荐
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01