aboutsummaryrefslogtreecommitdiff
path: root/ndk-gdb.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-11-16 16:13:45 -0800
committerDan Albert <danalbert@google.com>2015-11-16 16:33:50 -0800
commit915e2c8341619ff5bc918b19d4bac7fed933992e (patch)
treee00c4ace01cb12e26601bf6881e87db1182e7bcb /ndk-gdb.py
parentc40ed00f635349c4f563c198bb93852784f3cd32 (diff)
downloadndk-915e2c8341619ff5bc918b19d4bac7fed933992e.tar.gz
Move gdbserver out of prebuilt/.
Also stops installing gdbserver into the source directory. Bug: http://b/25432797 Bug: http://b/25454836 Change-Id: I4af1ae19473b528f167ceff19c021c760367335e
Diffstat (limited to 'ndk-gdb.py')
-rwxr-xr-xndk-gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndk-gdb.py b/ndk-gdb.py
index 4d7871a73..59071be37 100755
--- a/ndk-gdb.py
+++ b/ndk-gdb.py
@@ -421,7 +421,7 @@ def get_gdbserver_path(args, package_name, app_data_dir, arch):
# We need to upload our gdbserver
log("App gdbserver not found at {}, uploading.".format(app_gdbserver_path))
- local_path = "{}/prebuilt/android-{}/gdbserver/gdbserver"
+ local_path = "{}/gdbserver/{}/gdbserver"
local_path = local_path.format(NDK_PATH, arch)
remote_path = "/data/local/tmp/{}-gdbserver".format(arch)
args.device.push(local_path, remote_path)