Lines Matching full:server

3 lldb-server -- Server for LLDB Debugging Sessions
6 .. program:: lldb-server
11 | :program:`lldb-server` v[ersion]
12 | :program:`lldb-server` g[dbserver] [*options*]
13 | :program:`lldb-server` p[latform] [*options*]
18 :program:`lldb-server` provides the server counterpart of the LLVM debugger.
19 The server runs and monitors the debugged program, while the user interfaces
28 The first argument to lldb-server specifies a command to run.
32 Prints lldb-server version and exits.
36 Runs the server using the gdb-remote protocol. LLDB can afterwards
37 connect to the server using *gdb-remote* command.
41 Runs the platform server. LLDB can afterwards connect to the server using
47 | :program:`lldb-server` g[dbserver] [*options*] [[*host*]:*port*] [[--] *program* *args*...]
94 Run lldb-server in a new session.
107 If neither of target options are used, :program:`lldb-server` is started
114 | :program:`lldb-server` p[latform] [*options*] --server --listen [[*host*]:*port*]
119 .. option:: --server
121 Run in server mode, handling multiple connections. If this is not specified,
122 lldb-server will accept only one connection and exit when it is finished.
145 GDB-SERVER CONNECTIONS
150 Define a port to be used for gdb-server connections. Can be specified multiple
157 Specify the range of ports that can be used for gdb-server connections. Both
162 Add the specified offset to port numbers returned by server. This is useful
163 if the server is running behind a firewall, and a range of ports is redirected
169 The server can be started in several modes.
175 --. The server will launch the new executable and stop it immediately, waiting
178 lldb-server g :1234 /path/to/program program-argument -- --program-option
182 lldb-server g :1234 -- /path/to/program program-argument --program-option
186 the server. Note that terminating the server will usually cause the process
189 lldb-server g :1234 --attach 12345
190 lldb-server g :1234 --attach program-name
192 Use *gdb-remote* command to connect to the server:
196 lldb-server can also be started without an inferior. In this case, the client
197 can select the target after connecting to the server. Note that some commands
198 (e.g. *target create*) will disconnect and launch a local lldb-server instead.
200 lldb-server g :1234
209 for :program:`lldb-server` users.