| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # | 2 # |
| 3 # android_gdb_app: Pushes gdbserver, launches sampleApp, and connects | 3 # android_gdb_app: Pushes gdbserver, launches sampleApp, and connects |
| 4 # the debugging environment. | 4 # the debugging environment. |
| 5 | 5 |
| 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 7 source $SCRIPT_DIR/android_setup.sh | 7 source $SCRIPT_DIR/android_setup.sh |
| 8 | 8 |
| 9 APP_NAME=${APP_ARGS[0]} | 9 APP_NAME=${APP_ARGS[0]} |
| 10 PORT=5039 | 10 PORT=5039 |
| 11 | 11 |
| 12 source $SCRIPT_DIR/utils/setup_adb.sh | 12 source $SCRIPT_DIR/utils/setup_adb.sh |
| 13 | 13 |
| 14 | 14 |
| 15 # Forward local to remote socket connection. | 15 # Forward local to remote socket connection. |
| 16 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT" | 16 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT" |
| 17 | 17 |
| 18 # We kill all previous instances of gdbserver to rid all port overriding errors. | 18 # We kill all previous instances of gdbserver to rid all port overriding errors. |
| 19 if [ $(uname) == "Linux" ]; then | 19 if [ $(uname) == "Linux" ]; then |
| 20 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r
$ADB $DEVICE_SERIAL shell kill | 20 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r
$ADB $DEVICE_SERIAL shell kill |
| 21 elif [ $(uname) == "Darwin" ]; then | 21 elif [ $(uname) == "Darwin" ]; then |
| 22 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $AD
B $DEVICE_SERIAL shell kill | 22 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $AD
B $DEVICE_SERIAL shell kill |
| 23 else | 23 else |
| 24 echo "Could not automatically determine OS!" | 24 echo "Could not automatically determine OS!" |
| 25 exit 1; | 25 exit 1; |
| 26 fi | 26 fi |
| 27 | 27 |
| 28 # We need the debug symbols from these files | 28 # We need the debug symbols from these files |
| 29 GDB_TMP_DIR=$(pwd)/android_gdb_tmp | 29 GDB_TMP_DIR=$SKIA_OUT/android_gdb_tmp |
| 30 mkdir -p $GDB_TMP_DIR | 30 mkdir -p $GDB_TMP_DIR |
| 31 echo "Copying symbol files" | 31 echo "Copying symbol files" |
| 32 adb_pull_if_needed /system/bin/app_process $GDB_TMP_DIR | 32 adb_pull_if_needed /system/bin/app_process $GDB_TMP_DIR |
| 33 adb_pull_if_needed /system/lib/libc.so $GDB_TMP_DIR | 33 adb_pull_if_needed /system/lib/libc.so $GDB_TMP_DIR |
| 34 adb_pull_if_needed /data/data/com.skia/lib/libskia_android.so $GDB_TMP_DIR | 34 adb_pull_if_needed /data/data/com.skia/lib/libskia_android.so $GDB_TMP_DIR |
| 35 adb_pull_if_needed /data/data/com.skia/lib/libSampleApp.so $GDB_TMP_DIR | 35 adb_pull_if_needed /data/data/com.skia/lib/libSampleApp.so $GDB_TMP_DIR |
| 36 | 36 |
| 37 echo "Pushing gdbserver..." | 37 echo "Pushing gdbserver..." |
| 38 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp | 38 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp |
| 39 | 39 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 64 GDB_COMMAND=$(command ls "$ANDROID_TOOLCHAIN"/*-gdb | head -n1) | 64 GDB_COMMAND=$(command ls "$ANDROID_TOOLCHAIN"/*-gdb | head -n1) |
| 65 "$GDB_COMMAND" -x $GDBSETUP | 65 "$GDB_COMMAND" -x $GDBSETUP |
| 66 | 66 |
| 67 # Clean up: | 67 # Clean up: |
| 68 # We could 'rm -rf $GDB_TMP_DIR', but doing so would cause subsequent debugging | 68 # We could 'rm -rf $GDB_TMP_DIR', but doing so would cause subsequent debugging |
| 69 # sessions to take longer than necessary. The tradeoff is to now force the user | 69 # sessions to take longer than necessary. The tradeoff is to now force the user |
| 70 # to remove the directory when they are done debugging. | 70 # to remove the directory when they are done debugging. |
| 71 rm $GDBSETUP | 71 rm $GDBSETUP |
| 72 | 72 |
| 73 | 73 |
| OLD | NEW |