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
commit8f82d43e0b8f5fe9798fccd7ccbe51edbed7d51f (patch)
tree9d9b7a8a0cf6ab89a8092344dc3f046cc004b390
parentbfc4901959f9831c5abf517149fccf01fd5ac72d (diff)
parentbc119c289844a685c271c646eff491e7e8110d6d (diff)
downloaddevelopment-android13-frc-os-statsd-release.tar.gz
Snap for 8745897 from bc119c289844a685c271c646eff491e7e8110d6d to tm-frc-os-statsd-releaset_frc_sta_330443010android13-frc-os-statsd-release
Change-Id: Ib0924d8129085fccfcfc43a02f494a33a555e03e
-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")