Chromium Code Reviews| Index: build/android/gdb_content_shell |
| diff --git a/build/android/gdb_content_shell b/build/android/gdb_content_shell |
| index 54a705d42f0f3707e0be284333f921e250101339..94c0962872f7de9079aaef14f42fd64e0cf77b08 100755 |
| --- a/build/android/gdb_content_shell |
| +++ b/build/android/gdb_content_shell |
| @@ -72,8 +72,9 @@ fi |
| # gdb commands |
| cmdfile=$(mktemp /tmp/gdb_android_XXXXXXXX) |
| cat >$cmdfile<<EOF |
| -set solib-absolute-prefix null |
| +# set solib-absolute-prefix null |
|
Yaron
2012/05/09 01:01:42
Can you remove instead? Why is this needed?
John Grabowski
2012/05/09 17:18:15
This work isn't done; still not happy with debugga
|
| set solib-search-path ${shared_lib_dir} |
| +file ${app_process} |
| target remote :4321 |
| EOF |
| @@ -85,5 +86,6 @@ else |
| echo Using $gdb |
| fi |
| -${gdb} -x $cmdfile $* $app_process |
| +# ${gdb} -x $cmdfile $* $app_process |
|
Yaron
2012/05/09 01:01:42
Remove
|
| +${gdb} -x $cmdfile $* |
| rm $cmdfile |