1 # This is a list of toolchains that are supported on this board.
2 set_board_info target_install {v850-elf v850e-elf}
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 "sim"
8 # We need this for find_gcc and *_include_flags/*_link_flags.
9 load_base_board_description "basic-sim"
11 # No multilib flags needed for this target.
12 process_multilib_options ""
16 # We only support newlib on this target. We assume that all multilib
17 # options have been specified before we get here.
18 set_board_info compiler "[find_gcc]"
19 set_board_info cflags "[libgloss_include_flags] [newlib_include_flags]"
20 set_board_info ldflags "[libgloss_link_flags] [newlib_link_flags]"
22 set_board_info ldscript "";
24 # The simulator doesn't return exit statuses and we need to indicate this;
25 # the standard GCC wrapper will work with this target.
26 set_board_info needs_status_wrapper 1
27 # We can't pass arguments to programs.
28 set_board_info noargs 1
30 # And we don't support signals.
31 set_board_info gdb,nosignals 1