summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:44:42 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:44:42 +0000
commit4ed8392fce00e59c869fa5cc2bcacd5f48da8211 (patch)
tree9d9b7a8a0cf6ab89a8092344dc3f046cc004b390
parent35aab3ffc79e11685f62f70dd8dd774ca72928cd (diff)
parentbc119c289844a685c271c646eff491e7e8110d6d (diff)
downloaddevelopment-android13-frc-scheduling-release.tar.gz
Snap for 8745897 from bc119c289844a685c271c646eff491e7e8110d6d to tm-frc-scheduling-releaset_frc_sch_330443040t_frc_sch_330443010android13-frc-scheduling-release
Change-Id: Ib0fd2959e6accd6ed316beb6bdd8f2a895006aeb
-rwxr-xr-xscripts/gdbclient.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/gdbclient.py b/scripts/gdbclient.py
index 83c948afd..8c4262dd8 100755
--- a/scripts/gdbclient.py
+++ b/scripts/gdbclient.py
@@ -317,7 +317,8 @@ def do_main():
if ":" in device.serial:
host = device.serial.split(":")[0]
else:
- host = "localhost"
+ # lldb is broken with "localhost" right now (http://b/234034124)
+ host = "127.0.0.1"
root = os.environ["ANDROID_BUILD_TOP"]
sysroot = os.path.join(os.environ["ANDROID_PRODUCT_OUT"], "symbols")