Initial revision
[binutils.git] / binutils / testsuite / config / default.exp
blob2a2802e3a14cc5b139d4c29b3fc8d5fd82715a7a
1 # Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-dejagnu@prep.ai.mit.edu
20 # This file was written by Rob Savoye. (rob@cygnus.com)
22 load_lib util-defs.exp
23 load_lib utils-lib.exp
25 if ![info exists NM] then {
26 set NM [findfile $base_dir/nm-new $base_dir/nm-new [transform nm]]
28 if ![info exists NMFLAGS] then {
29 set NMFLAGS ""
32 if ![info exists SIZE] then {
33 set SIZE [findfile $base_dir/size]
35 if ![info exists SIZEFLAGS] then {
36 set SIZEFLAGS ""
39 if ![info exists OBJDUMP] then {
40 set OBJDUMP [findfile $base_dir/objdump]
42 if ![info exists OBJDUMPFLAGS] then {
43 set OBJDUMPFLAGS ""
46 if ![info exists OBJCOPY] then {
47 set OBJCOPY [findfile $base_dir/objcopy]
49 if ![info exists OBJCOPYFLAGS] then {
50 set OBJCOPYFLAGS ""
53 if ![info exists AR] then {
54 set AR [findfile $base_dir/ar]
57 if ![info exists STRIP] then {
58 set STRIP [findfile $base_dir/strip-new $base_dir/strip-new [transform strip]]
60 if ![info exists STRIPFLAGS] then {
61 set STRIPFLAGS ""
64 if ![info exists READELF] then {
65 set READELF [findfile $base_dir/readelf]
67 if ![info exists READELFFLAGS] then {
68 set READELFFLAGS ""
71 if ![file isdirectory tmpdir] {catch "exec mkdir tmpdir" status}
74 # binutils_run
75 # run a program, returning the output
76 # sets binutils_run_failed if the program does not exist
78 proc binutils_run { prog progargs } {
79 default_binutils_run $prog $progargs
83 # binutils_assemble
84 # assemble a file
86 proc binutils_assemble { source object } {
87 default_binutils_assemble $source $object