summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:44:56 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-20 13:44:56 +0000
commitca9ea85eddad7fa1cb34cdadbe5c32f28f908e07 (patch)
tree9d9b7a8a0cf6ab89a8092344dc3f046cc004b390
parent6509e4988896a50e3d80beee9e57b61390c88798 (diff)
parentbc119c289844a685c271c646eff491e7e8110d6d (diff)
downloaddevelopment-android13-frc-ipsec-release.tar.gz
Snap for 8745897 from bc119c289844a685c271c646eff491e7e8110d6d to tm-frc-ipsec-releaset_frc_ips_330443010android13-frc-ipsec-release
Change-Id: I21eee16a85efcb655e53406b30529541c0ab93c6
-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")