1 # This is a list of toolchains that are supported on this board.
2 set_board_info target_install {mips-vxworks5.3}
4 # Load the generic configuration for this board. This will define any
5 # routines needed by the tool to communicate with the board.
6 load_generic_config "vxworks";
8 # No multilib flags by default.
9 process_multilib_options "";
11 # The compiler used to build for this board. Note that this has nothing to do
12 # with what compiler is tested when testing gcc.
13 set_board_info compiler "[find_gcc]";
15 # These are probably wrong.
16 set_board_info cflags "-EL";
17 # vxworks 5.1 needs the executable to be relinkable.
18 set_board_info ldflags "-nostdlib -r";
19 set_board_info libs "-lgcc";
21 # No linker script needed.
22 set_board_info ldscript "";
24 # GDB needs to use "target vxworks" to talk to the board.
25 set_board_info gdb_protocol "vxworks";