1 # Libremote gdbserver running native.
3 load_generic_config "gdbserver";
5 process_multilib_options "";
7 # The default compiler for this target.
8 set_board_info compiler "[find_gcc]";
10 # We will be using the standard GDB remote protocol
11 set_board_info gdb_protocol "remote"
13 # Path to the gdbserver executable, if required.
14 set_board_info gdb_server_prog \
15 "../../libremote/native/server"
17 # Name of the computer whose socket will be used, if required.
18 # set_board_info sockethost "localhost"
20 # Port ID to use for socket connection
21 # set_board_info gdb,socketport "4004"
23 # Use techniques appropriate to a stub
24 set_board_info use_gdb_stub 1;
26 # This gdbserver can only run a process once per session.
27 set_board_info gdb,do_reload_on_run 1;
29 # There's no support for argument-passing (yet).
30 set_board_info noargs 1
32 # Can't do input (or output) in the current gdbserver.
33 set_board_info gdb,noinferiorio 1
35 # Can't do hardware watchpoints, in general
36 set_board_info gdb,no_hardware_watchpoints 1;