fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git] / toolchain / dejagnu / baseboards / i386-bozo.exp
blob314a26c7f7457475ab07571014d83b4e37c80085
1 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software
2 # Foundation, Inc.
4 # This file is part of DejaGnu.
6 # DejaGnu is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # DejaGnu is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with DejaGnu; if not, write to the Free Software Foundation,
18 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Load the tool-specific configuration for this board, as well as the
21 # generic configuration. This will define any routines needed by the
22 # tool to communicate with the board.
23 load_generic_config "i386-bozo"
25 # Use no multilib options by default.
26 process_multilib_options ""
28 # Default to COFF.
29 set add_flags ""
30 if { [board_info $board obj_format] == "a.out" } {
31     set_board_info support_libs "${prefix_dir}/i386-aout/"
32     set_board_info gdb_load_offset "0x41000000"
33     set_board_info gdb_sect_offset "0x41000000"
34     set add_flags "-N "
35 } elseif { [board_info $board obj_format] == "elf" } {
36     set_board_info support_libs "${prefix_dir}/i386-elf/"
37 } else {
38     set_board_info support_libs "${prefix_dir}/i386-coff/"
41 # The default compiler for this target.
42 set_board_info compiler "[find_gcc]"
44 # We only support newlib on this target. We assume that all multilib
45 # options have been specified before we get here.
46 set_board_info cflags "[newlib_include_flags]"
47 set_board_info ldflags "${add_flags}[newlib_link_flags] -B[board_info $board support_libs]"
48 # Whee, magic linker scripts hidden away.
49 set_board_info ldscript "-Tbozo.ld"
51 # The GDB protocol used with this board.
52 set_board_info gdb_protocol "remote"
53 # It's running a GDB stub in ROM.
54 set_board_info use_gdb_stub 1
56 # There's no support for argument-passing.
57 set_board_info noargs 1
58 # Can't do input.
59 set_board_info gdb,noinferiorio 1
60 # Nor does it have real signals.
61 set_board_info gdb,nosignals 1
63 # Limit the stack size.
64 set_board_info gcc,stack_size 16384
66 # Status wrapper will work, although exit statuses are reliable.
67 set_board_info needs_status_wrapper 1
69 # This is the start symbol in crt0.o.
70 set_board_info gdb,start_symbol "_start"