1 # Basic expect script
for LD Regression Tests
2 # Copyright
1993, 1994, 1995, 1997, 1998, 1999, 2001, 2003, 2007
3 # Free Software Foundation
, Inc.
5 # This file is part of the GNU Binutils.
7 # This file is free software
; you can redistribute it and
/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation
; either version
3 of the License
, or
10 #
(at your option
) any later version.
12 # This
program is distributed in the hope that it will be useful
,
13 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License
for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this
program; if not
, write to the Free Software
19 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
,
22 # Written by Jeffrey Wheat
(cassidy@cygnus.com
)
25 if ![info exists ld] then {
26 set ld [findfile $base_dir
/ld-new $base_dir
/ld-new
[transform
ld]]
29 if ![info exists as
] then {
30 set as
[findfile $base_dir
/..
/gas
/as
-new $base_dir
/..
/gas
/as
-new
[transform as
]]
33 if ![info exists nm
] then {
34 set nm
[findfile $base_dir
/..
/binutils
/nm
-new $base_dir
/..
/binutils
/nm
-new
[transform nm
]]
37 if ![info exists objdump
] then {
38 set objdump
[findfile $base_dir
/..
/binutils
/objdump
]
41 if ![info exists objcopy
] then {
42 set objcopy
[findfile $base_dir
/..
/binutils
/objcopy
]
45 if ![info exists ar
] then {
46 set ar
[findfile $base_dir
/..
/binutils
/ar
]
49 if ![info exists strip] then {
50 set strip [findfile $base_dir
/..
/binutils
/strip-new $base_dir
/..
/binutils
/strip-new
[transform
strip]]
53 remote_exec host
"mkdir -p tmpdir"
55 # Make a symlink from tmpdir
/as to the assembler in the build tree
, so
56 # that we can use a
-B option to gcc to force it to use the newly
58 if {![file isdirectory tmpdir
/gas
]} then {
59 catch
"exec mkdir tmpdir/gas" status
60 catch
"exec ln -s ../../../gas/as-new tmpdir/gas/as" status
62 set gcc_gas_flag
"-B[pwd]/tmpdir/gas/"
64 # Make a symlink from tmpdir
/ld to the linker in the build tree
, so
65 # that we can use a
-B option to gcc to force it to use the newly
67 if {![file isdirectory tmpdir
/ld]} then {
68 catch
"exec mkdir tmpdir/ld" status
69 catch
"exec ln -s ../../ld-new tmpdir/ld/ld" status
71 set gcc_ld_flag
"-B[pwd]/tmpdir/ld/"
73 #
load the linker path
74 if {[file
exists tmpdir
/libpath.exp
]} {
75 load_lib tmpdir
/libpath.exp
77 foreach
dir $libpath
{
78 set gcc_ld_flag
"$gcc_ld_flag -L$dir"
82 # The
"make check" target in the Makefile passes in
83 #
"CC=$(CC_FOR_TARGET)". But, if the user invokes runtest directly
84 #
(as when testing an installed linker
), these flags may not be
set.
85 if {![info exists CC
]} {
88 if {![info exists CFLAGS
]} {
91 if {![info exists CXX
]} {
94 if {![info exists CXXFLAGS
]} {
98 # The mips64
-*-linux
-gnu compiler defaults to the N32 ABI after
99 # installed
, but to the O32 ABI in the build tree
, because of some
100 # specs
-file hacks. Make sure we use an ABI that is compatible with
102 if {[istarget mips64
*-*-linux
*] &&
103 (![board_info
[target_info
name] exists multilib_flags
] ||
104 ![string match
"*-mabi" [board_info [target_info name] multilib_flags]])
106 append gcc_gas_flag
" -mabi=n32"
109 #
load the utility procedures
112 proc get_link_files
{varname
} {
114 global target_triplet
117 if ![info exists $varname
] {
118 set status [catch
"exec sh -c \"host='$target_triplet' && CC='$CC' && . $srcdir/../configure.host && eval echo \\$$varname\"" result]
119 if $
status { error
"Error getting native link files: $result" }
124 proc get_target_emul
{} {
125 global target_triplet
127 set status [catch
"exec sh -c \"targ='$target_triplet' && . $srcdir/../configure.tgt && echo \\\$targ_emul\"" result]
128 if $
status { error
"Error getting emulation name: $result" }
133 foreach x
{HOSTING_CRT0 HOSTING_LIBS
} {
137 foreach x
{HOSTING_CRT0 HOSTING_LIBS
} { set $x
"" }
139 if ![info exists HOSTING_EMU
] { set HOSTING_EMU
"-m [get_target_emul]" }
142 # ld_version
-- extract and print the version number of
ld compiler
(GCC
)
146 default_ld_version $
ld
150 # ld_exit
-- just a stub
for ld
159 proc ld_start
{ ld target
} {
165 # link an object using relocation
167 proc ld_relocate
{ ld target objects
} {
168 default_ld_relocate $
ld $target $objects
173 # link a
program using
ld
175 proc ld_link
{ ld target objects
} {
176 default_ld_link $
ld $target $objects
181 # link a
program using
ld, without including
any libraries
183 proc ld_simple_link
{ ld target objects
} {
184 default_ld_simple_link $
ld $target $objects
189 #
compile an object using $cc
191 proc ld_compile
{ cc source object
} {
192 default_ld_compile $cc $source $object
199 proc ld_assemble
{ as source object
} {
200 default_ld_assemble $as $source $object
207 proc ld_nm
{ nm nmflags object
} {
208 default_ld_nm $nm $nmflags $object
213 #
execute ithe target
215 proc ld_exec
{ target output
} {
216 default_ld_exec $target $output
219 # From gas
-defs.exp
, to support run_dump_test.
220 if ![info exists AS
] then {
224 if ![info exists GASP
] then {
225 set GASP
[findfile $base_dir
/..
/gas
/gasp
-new $base_dir
/..
/gas
/gasp
-new
[transform gasp
]]
228 if ![info exists ASFLAGS
] then {
232 if ![info exists OBJDUMP
] then {
236 if ![info exists OBJDUMPFLAGS
] then {
240 if ![info exists NM
] then {
244 if ![info exists NMFLAGS
] then {
248 if ![info exists OBJCOPY
] then {
252 if ![info exists OBJCOPYFLAGS
] then {
256 if ![info exists READELF
] then {
257 set READELF
[findfile $base_dir
/..
/binutils
/readelf
]
260 if ![info exists READELFFLAGS
] then {
264 if ![info exists LD] then {
265 set LD [findfile $base_dir
/ld-new .
/ld-new
[transform
ld]]
268 if ![info exists LDFLAGS
] then {