1 # Load the generic configuration for this board. This will define any
2 # routines needed by the tool to communicate with the board.
3 load_generic_config "m68k-emc";
5 # No multilib options by default.
6 process_multilib_options ""
8 # The compiler used to build for this board. Note that this has nothing to do
9 # with what compiler is tested when testing gcc.
10 set_board_info compiler "[find_gcc]"
12 set_board_info cflags "[newlib_include_flags] [libgloss_include_flags]";
14 set_board_info ldflags "-nostdlib [libgloss_link_flags] [newlib_link_flags]"
17 set_board_info ldscript "";
18 # The idt interface can't return exit statuses, so gcc (ctorture et
19 # al) needs to do what it can to get them.
20 set_board_info needs_status_wrapper 1;
22 # GDB needs to use "target remote" to talk to the board.
23 set_board_info gdb_protocol "remote";
25 # Can't pass arguments to the program under test.
26 set_board_info noargs 1
28 # Nor can it do I/O in GDB.
29 set_board_info gdb,noinferiorio 1
32 set_board_info gdb,nosignals 1
34 # It can't return results when debugging with GDB.
35 set_board_info gdb,noresults 1