1 # Expect script
for LD Bootstrap Tests
2 # Copyright
1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
3 # Free Software Foundation
, Inc.
5 # This file is free software
; you can redistribute it and
/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation
; either version
2 of the License
, or
8 #
(at your option
) any later version.
10 # This
program is distributed in the hope that it will be useful
,
11 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License
for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this
program; if not
, write to the Free Software
17 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
19 # Written by Jeffrey Wheat
(cassidy@cygnus.com
)
20 # Rewritten by Ian Lance Taylor
(ian@cygnus.com
)
23 # Make sure that
ld can bootstrap itself.
25 # This test can only be run
if ld generates native executables.
30 # Bootstrap
ld. First link the object files together using
-r
, in
31 # order to test
-r.
Then link the result into an executable
, ld1
, to
32 # really test
-r. Use ld1 to link a fresh
ld, ld2. Use ld2 to link a
33 # new
ld, ld3. ld2 and ld3 should be identical.
35 foreach flags
{"" "strip" "--static" "--traditional-format"
36 "--no-keep-memory" "--relax"} {
38 if {"$flags" == "strip"} {
39 set testname
"bootstrap with $flags"
42 } else { if {"$flags" != ""} {
43 set testname
"bootstrap with $flags"
45 set testname
"bootstrap"
48 #
--static is meaningless and
--relax is incompatible with
-r.
49 set partial_flags
"$flags"
50 if { "$flags" == "--static" || "$flags" == "--relax" } {
54 # This test can only be run
if we have the
ld build directory
,
55 # since we need the object files.
56 if {$
ld != "$objdir/ld-new"} {
61 #
If we only have a shared libbfd
, we probably can
't run the
63 if { $flags == "--static" && ! [string match "*libbfd.a*" $BFDLIB] } then {
68 if ![ld_relocate $ld tmpdir/ld-partial.o "$partial_flags $OFILES"] {
73 # On AIX, you need to specify an import list when using --static.
74 # You only want the import list when creating the final
76 if { [istarget "*-*-aix*"]
77 && ![istarget "ia64-*-aix*"]} {
78 if {"$flags" == "--static"} {
79 set flags "--static -bI:/lib/syscalls.exp"
83 # On Irix 5, linking with --static only works if all the files are
84 # compiled using -non_shared.
85 if {"$flags" == "--static"} {
86 setup_xfail "mips*-*-irix5*"
89 if ![ld_link $ld tmpdir/ld1 "$flags tmpdir/ld-partial.o $BFDLIB $LIBIBERTY"] {
94 if {"$do_strip" == "yes"} {
95 verbose -log "$strip tmpdir/ld1"
96 catch "exec $strip tmpdir/ld1" exec_output
97 if ![string match "" $exec_output] then {
98 verbose -log "$exec_output"
104 if ![ld_link tmpdir/ld1 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
109 if ![ld_link tmpdir/ld2 tmpdir/ld3 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
114 if {"$flags" == "--static"} {
115 if { [istarget ia64-*-elf*]
116 || [istarget ia64-*-linux*] } {
117 # On ia64, tmpdir/ld2 != tmpdir/ld3 is normal since they are
118 # generated by different linkers, tmpdir/ld1 and tmpdir/ld2.
119 # So we rebuild tmpdir/ld2 with tmpdir/ld3.
120 if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
126 if { [istarget mips*-*-linux*] } {
127 # On Linux/mips, tmpdir/ld2 != tmpdir/ld3 is normal since
128 # they are generated by different linkers, tmpdir/ld1 and
129 # tmpdir/ld2. So we rebuild tmpdir/ld2 with tmpdir/ld3.
130 if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
137 send_log "compare (tail of) tmpdir/ld2 tmpdir/ld3\n"
138 verbose "compare (tail of) tmpdir/ld2 tmpdir/ld3"
139 if {[istarget "*-*-pe"]
140 || [istarget "*-*-wince"]} {
141 # Trim off the date present in PE binaries by only looking
142 # at the ends of the files
143 # Although this works, a way to set the date would be better.
144 # Removing or zeroing the date stamp in the binary produced by
145 # the linker is not possible as it is required by the target OS.
146 exec tail +140 tmpdir/ld2 >tmpdir/ld2tail
147 exec tail +140 tmpdir/ld3 >tmpdir/ld3tail
148 catch "exec cmp tmpdir/ld2tail tmpdir/ld3tail" exec_output
149 exec rm tmpdir/ld2tail tmpdir/ld3tail
151 send_log "cmp tmpdir/ld2 tmpdir/ld3\n"
152 verbose "cmp tmpdir/ld2 tmpdir/ld3"
153 catch "exec cmp tmpdir/ld2 tmpdir/ld3" exec_output
155 set exec_output [prune_warnings $exec_output]
157 if [string match "" $exec_output] then {
160 send_log "$exec_output\n"
161 verbose "$exec_output" 1