Work around an lldb bug with "localhost". am: bc119c2898
Original change: https://googleplex-android-review.googlesource.com/c/platform/development/+/18912685 Change-Id: Ibc3e1214a6aa13659192e36479f2e1fb73c425cd Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -317,7 +317,8 @@ def do_main():
|
|||||||
if ":" in device.serial:
|
if ":" in device.serial:
|
||||||
host = device.serial.split(":")[0]
|
host = device.serial.split(":")[0]
|
||||||
else:
|
else:
|
||||||
host = "localhost"
|
# lldb is broken with "localhost" right now (http://b/234034124)
|
||||||
|
host = "127.0.0.1"
|
||||||
|
|
||||||
root = os.environ["ANDROID_BUILD_TOP"]
|
root = os.environ["ANDROID_BUILD_TOP"]
|
||||||
sysroot = os.path.join(os.environ["ANDROID_PRODUCT_OUT"], "symbols")
|
sysroot = os.path.join(os.environ["ANDROID_PRODUCT_OUT"], "symbols")
|
||||||
|
|||||||
Reference in New Issue
Block a user