c++ - How to check crash log using android ndk in cocos2d-x -
i use cocos2d-x develop game, after runs in ios, turn around android platform. but run somewhere in android, , receive error log this: 08-26 10:49:23.823: a/libc(2884): fatal signal 11 (sigsegv) @ 0x0000000c (code=1), thread 2917 (thread-285) with this, can't fix crash log. so question how can check stack of crash log? and in so, there similar questions, none useful answer me. using ndk-stack read crash logs unable line no stack trace in android ndk how useful crashlog information android cocos2dx c++ i find perfect answer in http://www.cocos2d-x.org/boards/6/topics/20437 . the solution is: when errors on logcat, saved on $project_path/obj/local/armeabi $project_path path cocos2d-x android project. symbolicate messages understandable, can use ndk-stack tool. open terminal (or cygwin, not sure though) , type in cd $android_ndk adb logcat | ./ndk-stack -sym $project_path/obj/local/armeabi where: $android_ndk path android ndk $project_path...