1 # Copyright (C) 1997-2019, 2020 Free Software Foundation, Inc.
3 # This file is part of DejaGnu.
5 # DejaGnu is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # DejaGnu is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with DejaGnu. If not, see <http://www.gnu.org/licenses/>.
18 # gdbserver running native.
20 load_generic_config "gdbserver"
22 process_multilib_options ""
24 # We will be using the standard GDB remote protocol
25 set_board_info gdb_protocol "remote"
27 # Path to the gdbserver executable, if required.
28 set_board_info gdb_server_prog \
29 "../gdbserver/gdbserver"
31 # Name of the computer whose socket will be used, if required.
32 set_board_info sockethost "localhost:"
34 # Port ID to use for socket connection
35 # set_board_info gdb,socketport "4004"
37 # Use techniques appropriate to a stub
38 set_board_info use_gdb_stub 1
40 # This gdbserver can only run a process once per session.
41 set_board_info gdb,do_reload_on_run 1
43 # There's no support for argument-passing (yet).
44 set_board_info noargs 1
46 # Can't do input (or output) in the current gdbserver.
47 set_board_info gdb,noinferiorio 1
49 # Can't do hardware watchpoints, in general
50 set_board_info gdb,no_hardware_watchpoints 1