MI command for connecting remote target

Is there any MI command for connecting remote target ?

Using platform and target command with lldb, It works fine as follows:

-----host log----------
twoflower@js1-desktop ~/local-hello> ls
a.out* hello.cpp
twoflower@js1-desktop ~/local-hello> lldb-3.8.1
(lldb) platform select remote-linux
Platform: remote-linux
Connected: no
(lldb) platform connect connect://10.113.62.251:1234
Platform: remote-linux
Triple: x86_64-*-linux-gnu
OS Version: 3.19.0 (3.19.0-32-generic)
Kernel: #37~14.04.1-Ubuntu SMP Thu Oct 22 09:41:40 UTC 2015
Hostname: twoflower
Connected: yes
WorkingDir: /home/twoflower/remote-hello
(lldb) target create -r /home/twoflower/remote-hello/a.out a.out
Current executable set to ‘a.out’ (x86_64).
(lldb) b main
Breakpoint 1: where = a.out`main, address = 0x000000000040052d
(lldb) r
Process 14524 launched: ‘/home/twoflower/.lldb/module_cache/remote-linux/.cache/BB42308F-4677-5DC0-AFC2-097CDFE91A83-3612C4F8/a.out’ (x86_64)
Process 14524 stopped

  • thread #1: tid = 14524, 0x000000000040052d a.outmain, name = 'a.out', stop reason = breakpoint 1.1 frame #0: 0x000000000040052d a.outmain
    a.out`main:
    → 0x40052d <+0>: pushq %rbp
    0x40052e <+1>: movq %rsp, %rbp
    0x400531 <+4>: movl $0x4005d4, %edi ; imm = 0x4005D4
    0x400536 <+9>: movl $0x0, %eax
    (lldb) c
    Process 14524 resuming
    Process 14524 exited with status = 0 (0x00000000)
    (lldb) q
    twoflower@js1-desktop ~/local-hello>

------remote log -------
twoflower@twoflower ~/remote-hello> ls
a.out* hello.cpp
twoflower@twoflower ~/remote-hello> lldb-server-3.8 p --listen “*:1234”
Connection established.
error: lost connection
lldb-server exiting…

You need to specify the executable to debug before attempting to connect to the remote machine:

lldb-mi --interpreter

-file-exec-and-symbols local/path/to/executable
-target-select remote host:port

Note that the file-exec-and-symbols command has some non-standard extensions in LLDB-MI that are documented in <https://github.com/llvm-mirror/lldb/blob/release_38/tools/lldb-mi/MIExtensions.txt&gt;