From:
addr2line,可以根据一个地址打印出对应的代码行
addr2line,输入一个地址,指定一个带-g编译的可执行程序,就可以打印出该地址对应的代码行。
其实gdb也有这个功能,不过addr2line的好处是,很多时候,bug很难重现,我们手上只有一份crash log。这样就可以利用addr2line找到对应的代码行,很方便。前提条件是:
1. 该可执行程序用-g编译,带调试信息(所谓调试信息就是代码和地址的一个对应关系的信息)。
2. 如果crash在一个so里面,那addr2line不能直接给出代码行。因为我们都知道,so里面的地址在可执行文件装载的时候,是可以被 reallocate的。在windows核心编程中说dll的加载逻辑的时候,也提到过。所以,如果只有一个so的地址,要找出对应代码行的话,就要给 addr2line一个基地址和偏移量,或者根据可执行程序的smap信息,自己将这个地址转化成相对于so基地址的一个偏移地址才行。
Frome http://stackoverflow.com/questions/5314036/how-to-use-addr2line-in-android
Look at the last 3 lines; this is your callstack. 'pc' is the program counter, and the pc for stack frame #00 gives you the address where the crash occurred. This is the number to pass to addr2line.
I'm using NDK r5, so the executable I'm using is located at $NDK/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin; make sure that is in your $PATH. The command to use looks like
arm-linux-androideabi-addr2line -C -f -e obj/local/armeabi/libXXX.so <address>
addr2line,可以根据一个地址打印出对应的代码行
addr2line,输入一个地址,指定一个带-g编译的可执行程序,就可以打印出该地址对应的代码行。
其实gdb也有这个功能,不过addr2line的好处是,很多时候,bug很难重现,我们手上只有一份crash log。这样就可以利用addr2line找到对应的代码行,很方便。前提条件是:
1. 该可执行程序用-g编译,带调试信息(所谓调试信息就是代码和地址的一个对应关系的信息)。
2. 如果crash在一个so里面,那addr2line不能直接给出代码行。因为我们都知道,so里面的地址在可执行文件装载的时候,是可以被 reallocate的。在windows核心编程中说dll的加载逻辑的时候,也提到过。所以,如果只有一个so的地址,要找出对应代码行的话,就要给 addr2line一个基地址和偏移量,或者根据可执行程序的smap信息,自己将这个地址转化成相对于so基地址的一个偏移地址才行。
Frome http://stackoverflow.com/questions/5314036/how-to-use-addr2line-in-android
Look at the last 3 lines; this is your callstack. 'pc' is the program counter, and the pc for stack frame #00 gives you the address where the crash occurred. This is the number to pass to addr2line.
I'm using NDK r5, so the executable I'm using is located at $NDK/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin; make sure that is in your $PATH. The command to use looks like
arm-linux-androideabi-addr2line -C -f -e obj/local/armeabi/libXXX.so <address>