~ubuntu-branches/ubuntu/oneiric/dejagnu/oneiric

« back to all changes in this revision

Viewing changes to baseboards/rom68k-idp.exp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2006-12-11 09:06:59 UTC
  • mfrom: (2.1.6 edgy)
  • Revision ID: james.westby@ubuntu.com-20061211090659-w586kgi3giz84053
Tags: 1.4.4.cvs20060709-3
* Acknowledge previous NMUs.
* Fix permissions on /usr/share/dejagnu when building without fakeroot
  (Closes: #392589, #379809).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software
 
1
# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
2
2
# Foundation, Inc.
3
3
#
4
4
# This file is part of DejaGnu.
15
15
#
16
16
# You should have received a copy of the GNU General Public License
17
17
# along with DejaGnu; if not, write to the Free Software Foundation,
18
 
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 
20
20
# This is a list of toolchains that are supported on this board.
21
21
set_board_info target_install {m68k-coff m68k-elf}
53
53
 
54
54
 
55
55
# If no output format is specified, use objcopy.
56
 
if ![board_info $board exists output_format] {
 
56
if {![board_info $board exists output_format]} {
57
57
    set tempfil [lookfor_file $tool_root_dir binutils/objcopy]
58
58
    if { $tempfil != "" } {
59
59
        set_board_info objcopy $tempfil
63
63
    unset tempfil
64
64
}
65
65
 
66
 
# IDP linker script.
67
 
set_board_info ldscript "-Wl,-Tidp.ld"
 
66
# IDP linker script, with special console output routine for GDB.
 
67
set_board_info ldscript "-Tidpgdb.ld"
 
68
 
68
69
# The idt interface can't return exit statuses, so gcc (ctorture et
69
70
# al) needs to do what it can to get them.
70
71
set_board_info needs_status_wrapper 1
75
76
# Can't pass arguments to the program under test.
76
77
set_board_info noargs 1
77
78
 
78
 
# Nor can it do I/O in GDB.
79
 
set_board_info gdb,noinferiorio 1
80
 
 
81
79
# It has no signals.
82
80
set_board_info gdb,nosignals 1
83
81