johnsonlee / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

can not exec minidump_stackwalk in android #553

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. use command /configure --host=i686-pc-linux-gnu  and make -j4 to generate 
minidump_stackwalk

2.use adb push to copy minidump_stackwalk to device

3.input adb shell ,then use minidump_stackwalk $MINIDUMP_FILE 
$PROJECT_PATH/symbols to generate stack info 

What is the expected output? What do you see instead?
the result is minidump_stackwalk: cannot execute -permission denied.

my device not root ,so I have no authority to use chmod change 
minidump_stackwalk's Privileges

Did there are some other method I can use minidump_stackwalk in android except 
get root Privileges?

Please use labels and text to provide additional information.

Original issue reported on code.google.com by yuzuwei2...@gmail.com on 11 Dec 2013 at 9:44

GoogleCodeExporter commented 9 years ago
This is not a Breakpad bug, it's an issue with your environment. But really, 
why are you trying to run minidump_stackwalk on a device? You can build a Linux 
binary and process your minidumps on that machine instead of trying to do it on 
Android.

Original comment by ted.mielczarek on 11 Dec 2013 at 12:11

GoogleCodeExporter commented 9 years ago
I want implement the function that when my app crash ,I can generate stack 
info automatic in device.and send stack info to my server (a simple server 
,just can recevie  String).did it can implement run minidump_stackwalk on a 
device?

Original comment by yuzuwei2...@gmail.com on 12 Dec 2013 at 1:48