Work around an lldb bug with "localhost".
Bug: http://b/234034124 Test: reputed to work Change-Id: I3414201712ffe0f808899e2a2f206e813bb609a7
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