summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:45:55 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:45:55 +0000
commitaf217f1c1b93c66716e34a5bd452231de34cdcb7 (patch)
tree9d9b7a8a0cf6ab89a8092344dc3f046cc004b390
parent8fb403edcbd1072fd5368983c42c5131fe50dcd2 (diff)
parentbc119c289844a685c271c646eff491e7e8110d6d (diff)
downloaddevelopment-android13-frc-networking-release.tar.gz
Snap for 8745897 from bc119c289844a685c271c646eff491e7e8110d6d to tm-frc-networking-releaset_frc_net_330443000android13-frc-networking-release
Change-Id: Ifbb559cfd455711c1d1d8b41a754a4430a42bb40
-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")