1999-05-03 07:29:11 +00:00
|
|
|
# Expect script for LD selective linking tests
|
bfd:
* config.bfd (thumb-*-oabi): Don't handle in list of obsolete
targets.
(strongarm*, thumb*, xscale*): Remove architectures.
(strongarm-*-kaos*, thumb-*-coff, thumb-*-elf, thumb-epoc-pe*,
thumb-*-pe*, strongarm-*-elf, strongarm-*-coff, xscale-*-elf,
xscale-*-coff): Remove targets.
binutils:
* configure.in (thumb-*-pe*): Remove.
* configure: Regenerate.
binutils/testsuite:
* binutils-all/objcopy.exp (*arm*-*-coff): Change to arm*-*-coff.
(xscale-*-coff, thumb*-*-coff, thumb*-*-pe): Don't handle.
gas:
* configure.tgt (strongarm*be, strongarm*b, strongarm*,
xscale*be|xscale*b, xscale*): Remove architectures.
(thumb-*-coff, thumb-*-rtems*, thumb-*-elf, thumb-epoc-pe,
thumb-*-pe, xscale-*-coff, xscale-*-elf): Remove targets.
gas/testsuite:
* gas/all/gas.exp (*arm*-*-coff): Change to arm*-*-coff.
(thumb*-*-coff, thumb*-*-pe*): Don;t handle.
* gas/arm/arm.exp (*arm*-*-*): Change to arm*-*-*.
(*xscale*-*-*): Don't handle.
* gas/cfi/cfi.exp (xscale*-*): Don't handle.
* gas/elf/elf.exp (*arm*-*-*): Change to arm*-*-*.
(xscale*-*-*): Don't handle.
ld:
* configure.tgt (thumb-*-linux-* | thumb-*-uclinux*,
strongarm-*-coff, strongarm-*-elf, strongarm-*-kaos*,
thumb-*-coff, thumb-*-elf, thumb-epoc-pe, thumb-*-pe,
xscale-*-coff, xscale-*-elf): Remove targets.
ld/testsuite:
* ld-selective/selective.exp (xscale-*-*): Don't handle.
* ld-srec/srec.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
(*arm*-*-*): Change to arm*-*-*.
(strongarm*-*-coff, xscale*-*-coff, thumb-*-coff*, thumb-*-pe*,
thumb-*-elf*, strongarm*-*-*, thumb-*-*): Remove xfails.
* ld-undefined/undefined.exp (thumb*-*-pe*, thumb*-*-pe*): Remove
commented-out xfails.
(thumb-elf): Remove reference in comment.
* lib/ld-lib.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
2011-04-06 17:09:56 +00:00
|
|
|
# Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009,
|
|
|
|
# 2010, 2011 Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
#
|
2007-07-06 14:09:45 +00:00
|
|
|
# This file is part of the GNU Binutils.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
1999-05-03 07:29:11 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-06 14:09:45 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-05-03 07:29:11 +00:00
|
|
|
# (at your option) any later version.
|
2002-02-12 11:10:11 +00:00
|
|
|
#
|
1999-05-03 07:29:11 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2002-02-12 11:10:11 +00:00
|
|
|
#
|
1999-05-03 07:29:11 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2007-07-06 14:09:45 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301, USA.
|
1999-05-03 07:29:11 +00:00
|
|
|
#
|
|
|
|
# Written by Catherine Moore (clm@cygnus.com)
|
|
|
|
# Make sure that constructors are handled correctly.
|
|
|
|
|
2004-01-02 08:27:08 +00:00
|
|
|
# Only ELF based ports support selective linking
|
2011-10-20 12:34:20 +00:00
|
|
|
if { ![is_elf_format] || ![check_gc_sections_available] } {
|
2004-01-09 21:19:15 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
# List contains test-items with three items followed by four lists:
|
|
|
|
# 1:name 2:test-type (CC or C++; add as needed) 3:filename 4:ld-flags
|
|
|
|
# 5:must-have-symbols 6:must-not-have-symbols 7:xfail-targets.
|
|
|
|
#
|
|
|
|
# If a must(-not)-have symbol is a list, then that list must have two
|
|
|
|
# items; the symbol name and a value the symbol must (not) have.
|
|
|
|
#
|
|
|
|
# Note: ld_nm trims leading `_' from _start
|
|
|
|
#
|
|
|
|
# FIXME: Instead of table, read settings from each source-file.
|
|
|
|
set seltests {
|
2004-01-02 08:27:08 +00:00
|
|
|
{selective1 C 1.c {} {} {dropme1 dropme2} {}}
|
2006-07-19 11:49:32 +00:00
|
|
|
{selective2 C 2.c {} {} {foo} {}}
|
|
|
|
{selective3 C 2.c {-u foo} {foo} {{foo 0}} {}}
|
2004-01-02 08:27:08 +00:00
|
|
|
{selective4 C++ 3.cc {} {start a A::foo() B::foo()} {A::bar()} {mips*-*}}
|
|
|
|
{selective5 C++ 4.cc {} {start a A::bar()} {A::foo() B::foo()} {mips*-*}}
|
2001-08-21 16:04:37 +00:00
|
|
|
{selective6 C++ 5.cc {} {start a A::bar()}
|
2001-07-24 11:09:24 +00:00
|
|
|
{A::foo() B::foo() dropme1() dropme2()} {*-*-*}}
|
2000-10-09 01:35:13 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-04-02 23:33:20 +00:00
|
|
|
set cflags "-w -O -ffunction-sections -fdata-sections"
|
2010-12-04 18:32:52 +00:00
|
|
|
set cxxflags "-fno-exceptions -fno-rtti"
|
1999-05-03 07:29:11 +00:00
|
|
|
set ldflags "--gc-sections -Bstatic"
|
|
|
|
|
2006-07-19 11:49:32 +00:00
|
|
|
if [istarget mips*-*] {
|
|
|
|
# MIPS16 doesn't support PIC code.
|
|
|
|
set cflags "-mno-abicalls $cflags"
|
|
|
|
# MIPS ELF uses __start by default, we override it.
|
|
|
|
set ldflags "-e _start $ldflags"
|
|
|
|
}
|
|
|
|
|
Contribute sh64-elf.
2002-02-02 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/crange3-cmpct.rd: Adjust offsets.
* ld-sh/sh64/crange3-media.rd: Likewise.
* ld-sh/sh64/crange3.rd: Likewise.
* ld-sh/sh64/crangerel1.rd: Likewise.
* ld-sh/sh64/crangerel2.rd: Likewise.
* ld-sh/sh64/reldl32.rd: Likewise.
* ld-sh/sh64/reldl64.rd: Likewise.
2002-01-28 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/abi32.xd: Formatting changes to match the current
output of objdump.
* ld-sh/sh64/cmpct1.xd: Likewise.
* ld-sh/sh64/crange1.rd: Likewise.
* ld-sh/sh64/crange2.rd: Likewise.
* ld-sh/sh64/crange3-cmpct.rd: Likewise.
* ld-sh/sh64/crange3-media.rd: Likewise.
* ld-sh/sh64/crange3.rd: Likewise.
* ld-sh/sh64/crangerel1.rd: Likewise.
* ld-sh/sh64/crangerel2.rd: Likewise.
* ld-sh/sh64/mix1.xd: Likewise.
* ld-sh/sh64/mix2.xd: Likewise.
* ld-sh/sh64/rel32.xd: Likewise.
* ld-sh/sh64/reldl32.rd: Likewise.
* ld-sh/sh64/reldl64.rd: Likewise.
* ld-sh/sh64/sh64.exp: Likewise. Reordered cranges and stack
sessions, to match changes in the linker script.
2001-06-14 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/reldl32.rd, ld-sh/sh64/reldl64.rd: Adjust relocation
info to reflect renumbering of relocation types.
2001-03-14 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/endian.dbd: New file, endian tests.
* ld-sh/sh64/endian.dld: Ditto.
* ld-sh/sh64/endian.ld: Ditto.
* ld-sh/sh64/endian.s: Ditto.
* ld-sh/sh64/endian.sbd: Ditto.
* ld-sh/sh64/endian.sld: Ditto.
* ld-sh/sh64/sh64.exp: Add above tests. Add -L option to ld.
2001-03-12 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/relax.exp: New file, test disabling relaxing.
* ld-sh/sh64/relax1.s: Ditto.
* ld-sh/sh64/relax2.s: Ditto.
* ld-sh/sh64/relax3.s: Ditto.
* ld-sh/sh64/relax4.s: Ditto.
* ld-sh/sh64/relfail.exp: New file, test for bogus relocs.
* ld-sh/sh64/relfail.s: Ditto.
2001-03-12 DJ Delorie <dj@redhat.com>
* ld-sh/sh.exp: This test isn't appropriate for SH64 since it
uses SH32 assembler files.
2001-03-07 DJ Delorie <dj@redhat.com>
* ld-selective/selective.exp: Pass "-e _start" for sh64 to
accomodate expected start symbol in test.
2001-03-06 DJ Delorie <dj@redhat.com>
* ld-scripts/crossref.exp: Pass -mshelf32 to the linker for sh64,
to match what gcc passes to the linker by default.
* ld-selective/selective.exp: Ditto.
* ld-srec/srec.exp: Ditto, plus XFAIL for sh64.
* ld-undefined/undefined.exp: Add XFAIL for sh64 (it's dwarf2).
2001-03-06 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/abi32.xd (stack): Adjust for new default stack layout.
* ld-sh/sh64/abi64.xd (stack): Ditto.
* ld-sh/sh64/cmpct1.xd (stack): Ditto.
* ld-sh/sh64/crange1.rd (stack): Ditto.
* ld-sh/sh64/crange2.rd (stack): Ditto.
* ld-sh/sh64/crange3-cmpct.rd (stack): Ditto.
* ld-sh/sh64/crange3-media.rd (stack): Ditto.
* ld-sh/sh64/crange3.rd (stack): Ditto.
* ld-sh/sh64/mix1.xd (stack): Ditto.
* ld-sh/sh64/mix2.xd (stack): Ditto.
* ld-sh/sh64/shdl32.xd (stack): Ditto.
* ld-sh/sh64/shdl64.xd (stack): Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/mix1.xd: Add SORT_ENTRIES for .cranges section.
* ld-sh/sh64/mix2.xd: Ditto.
2001-01-08 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.xd: Adjust for bit 0 set on an entry address
being SHmedia.
* ld-sh/sh64/shdl64.xd: Ditto.
* ld-sh/sh64/shdl32.xd: Ditto.
* ld-sh/sh64/mix2.xd: Ditto.
* ld-sh/sh64/crange3-media.rd: Ditto.
* ld-sh/sh64/abi64.xd: Ditto.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-2a.s (diversion2): New global symbol.
* ld-sh/sh64/crange1.rd: Adjust to presence of new symbol.
Adjust section type for .cranges; expect sorted contents.
* ld-sh/sh64/crange2.rd: Ditto.
* ld-sh/sh64/crange3.dd, ld-sh/sh64/crange3.rd: Ditto.
* ld-sh/sh64/crangerel1.rd: Adjust to presence of new symbol.
* ld-sh/sh64/crangerel2.rd: Ditto.
* ld-sh/sh64/mix1.xd: Adjust to DEBUGGING being set for .cranges.
* ld-sh/sh64/mix2.xd: Ditto.
* ld-sh/sh64/crange3-cmpct.rd, ld-sh/sh64/crange3-media.rd: New
tests.
* ld-sh/sh64/sh64.exp: Tweak test message. Run new tests.
2001-01-05 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/shmix-1.s (start2): Add a NOP to provide a valid
target for (unexpanded) PTB. Add an .align 2 to SHmedia code to
keep properly aligned.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd: Adjust accordingly.
* ld-sh/sh64/mix1-noexp.sd, ld-sh/sh64/mix2-noexp.sd,
ld-sh/sh64/abixx-noexp.sd: New tests for GAS -no-expand and
R_SH_PT_16 relocation.
* ld-sh/sh64/sh64.exp: Run new tests.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-2f.s, ld-sh/sh64/crange-2g.s,
ld-sh/sh64/crange-2h.s, ld-sh/sh64/crange-2i.s,
ld-sh/sh64/crange3.dd, ld-sh/sh64/crange3.rd: New tests.
* ld-sh/sh64/sh64.exp: Run new tests.
* ld-sh/sh64/crange1.rd: Correct section flags.
* ld-sh/sh64/crange2.rd: Ditto.
* ld-sh/sh64/crangerel1.rd: Ditto.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-1.s, ld-sh/sh64/crange-2a.s,
ld-sh/sh64/crange-2b.s, ld-sh/sh64/crange-2c.s,
ld-sh/sh64/crange-2d.s, ld-sh/sh64/crange-2e.s,
ld-sh/sh64/crange1.rd, ld-sh/sh64/crange2.rd,
ld-sh/sh64/crangerel1.rd, ld-sh/sh64/crangerel2.rd: New tests for
handling .cranges section.
* ld-sh/sh64/sh64.exp: Run new tests.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd, ld-sh/sh64/mix2.sd,
ld-sh/sh64/mix2.xd: Adjust for .cranges section.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.sd, ld-sh/sh64/abi32.xd, ld-sh/sh64/abi64.sd,
ld-sh/sh64/abi64.xd, ld-sh/sh64/cmpct1.xd, ld-sh/sh64/mix1.sd,
ld-sh/sh64/mix1.xd, ld-sh/sh64/mix2.sd, ld-sh/sh64/mix2.xd,
ld-sh/sh64/shdl32.xd, ld-sh/sh64/shdl64.xd: Adjust to .bss and
.data individually 8-byte aligned.
2000-12-09 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/rel-1.s, ld-sh/sh64/rel-2.s, ld-sh/sh64/rel32.xd,
ld-sh/sh64/rel64.xd, ld-sh/sh64/reldl-1.s, ld-sh/sh64/reldl-2.s,
ld-sh/sh64/reldl32.rd, ld-sh/sh64/reldl64.rd: New tests.
* ld-sh/sh64/sh64.exp: Make it possible to use readelf as
inspection tool. Run new tests.
2000-12-07 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi64.sd, ld-sh/sh64/abi32.sd, ld-sh/sh64/mix1.sd,
ld-sh/sh64/mix2.sd: Correct offsets in PT/PTA/PTB expansions.
* ld-sh/sh64/shdl-1.s, ld-sh/sh64/shdl-2.s, ld-sh/sh64/shdl64.sd,
ld-sh/sh64/shdl64.xd, ld-sh/sh64/shdl32.xd: New tests.
* ld-sh/sh64/sh64.exp: Run new tests.
2000-12-01 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/cmpct1.sd, ld-sh/sh64/cmpct1.xd,
ld-sh/sh64/shcmp-1.s: New test.
* ld-sh/sh64/sh64.exp: Add new test to sh64tests. Reformat.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/sh64.exp: Use linker option -mshelf64 for 64-bit ABI
test.
* ld-sh/sh64/abi64.xd: Tweak for 64-bit ELF.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/sh64.exp (sh64tests): Use linker option -mshelf32 for
tests.
2000-11-27 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.sd, ld-sh/sh64/abi64.sd: Correct MOVI
registers.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd, ld-sh/sh64/shmix-1.s:
New test.
* ld-sh/sh64/mix2.sd, ld-sh/sh64/mix2.xd, ld-sh/sh64/shmix-2.s,
ld-sh/sh64/shmix-3.s: New test.
* ld-sh/sh64/sh64.exp: Add new tests to sh64tests.
2000-11-26 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64: New testsuite.
2002-02-08 06:50:02 +00:00
|
|
|
if [istarget sh64*-*-elf] {
|
|
|
|
# This is what gcc passes to ld by default, plus switch to the
|
|
|
|
# "usual" ELF _start (shelf32 normally uses just `start' for COFF
|
|
|
|
# compatibility)
|
|
|
|
set ldflags "-e _start -mshelf32 $ldflags"
|
|
|
|
}
|
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
# If we don't have g++ for the target, mark all tests as untested.
|
2007-08-28 13:21:58 +00:00
|
|
|
if { ![is_remote host] && [which $CXX] == 0 } {
|
2000-10-09 01:35:13 +00:00
|
|
|
foreach testitem $seltests {
|
2000-10-29 17:21:03 +00:00
|
|
|
untested "[lindex $testitem 0]"
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
foreach testitem $seltests {
|
|
|
|
set testname [lindex $testitem 0]
|
|
|
|
set testtype [lindex $testitem 1]
|
|
|
|
set testfile [lindex $testitem 2]
|
|
|
|
set objfile "tmpdir/[file rootname $testfile].o"
|
|
|
|
set ldfile "tmpdir/[file rootname $testfile].x"
|
|
|
|
set failed 0
|
|
|
|
|
|
|
|
set ldargs [lindex $testitem 3]
|
|
|
|
set mustsyms [lindex $testitem 4]
|
|
|
|
set mustnotsyms [lindex $testitem 5]
|
|
|
|
set xfails [lindex $testitem 6]
|
|
|
|
|
|
|
|
foreach xfail_target $xfails {
|
|
|
|
setup_xfail $xfail_target
|
2000-04-12 03:44:15 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
# It's either C or C++ at the moment.
|
|
|
|
if { $testtype == "C++" } {
|
2007-09-30 15:26:43 +00:00
|
|
|
set compiler "$CXX"
|
2009-07-08 03:09:13 +00:00
|
|
|
# Starting with 3.4.0, -fvtable-gc is no longer supported and thus
|
|
|
|
# the functionality we try to test for cannot be expected to work.
|
|
|
|
set version [remote_exec host "$CXX -dumpversion"]
|
|
|
|
set version [lindex $version 1]
|
|
|
|
if [regexp "^(\[1-9\]\[0-9\]+|\[4-9\]|3.(\[1-9\]\[0-9\]+|\[4-9\]))\\." $version] {
|
2010-12-04 18:32:52 +00:00
|
|
|
set testflags "$cflags $cxxflags"
|
2009-07-08 03:09:13 +00:00
|
|
|
setup_xfail {*-*-*}
|
2010-12-04 18:32:52 +00:00
|
|
|
} else {
|
|
|
|
set testflags "$cflags $cxxflags -fvtable-gc"
|
2004-06-18 15:41:47 +00:00
|
|
|
}
|
2009-07-08 03:09:13 +00:00
|
|
|
} else {
|
2000-10-09 01:35:13 +00:00
|
|
|
set testflags "$cflags"
|
2007-09-30 15:26:43 +00:00
|
|
|
set compiler "$CC"
|
2000-10-09 01:35:13 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
# Note that we do not actually *use* CXX; we just add cxxflags for C++
|
|
|
|
# tests. It might have been a buglet originally; now I think better
|
|
|
|
# leave as is.
|
2007-09-30 15:26:43 +00:00
|
|
|
if { ![ld_compile "$compiler $testflags" $srcdir/$subdir/$testfile $objfile] } {
|
2000-10-09 01:35:13 +00:00
|
|
|
unresolved $testname
|
2001-08-21 16:04:37 +00:00
|
|
|
continue
|
2000-04-12 03:44:15 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-12-09 23:44:17 +00:00
|
|
|
# V850 targets need libgcc.a
|
|
|
|
if [istarget v850*-*-elf] {
|
2007-09-30 15:26:43 +00:00
|
|
|
set libgcc [remote_exec host "$compiler -print-libgcc-file-name"]
|
2007-08-28 13:21:58 +00:00
|
|
|
set libgcc [lindex $libgcc 1]
|
|
|
|
regsub -all "\[\r\n\]" $libgcc "" libgcc
|
2004-12-01 21:12:39 +00:00
|
|
|
set objfile "$objfile $libgcc"
|
2000-12-09 23:44:17 +00:00
|
|
|
}
|
2002-02-12 11:10:11 +00:00
|
|
|
|
2002-01-14 15:46:50 +00:00
|
|
|
# ARM targets need libgcc.a in THUMB mode so that __call_via_r3 is provided
|
bfd:
* config.bfd (thumb-*-oabi): Don't handle in list of obsolete
targets.
(strongarm*, thumb*, xscale*): Remove architectures.
(strongarm-*-kaos*, thumb-*-coff, thumb-*-elf, thumb-epoc-pe*,
thumb-*-pe*, strongarm-*-elf, strongarm-*-coff, xscale-*-elf,
xscale-*-coff): Remove targets.
binutils:
* configure.in (thumb-*-pe*): Remove.
* configure: Regenerate.
binutils/testsuite:
* binutils-all/objcopy.exp (*arm*-*-coff): Change to arm*-*-coff.
(xscale-*-coff, thumb*-*-coff, thumb*-*-pe): Don't handle.
gas:
* configure.tgt (strongarm*be, strongarm*b, strongarm*,
xscale*be|xscale*b, xscale*): Remove architectures.
(thumb-*-coff, thumb-*-rtems*, thumb-*-elf, thumb-epoc-pe,
thumb-*-pe, xscale-*-coff, xscale-*-elf): Remove targets.
gas/testsuite:
* gas/all/gas.exp (*arm*-*-coff): Change to arm*-*-coff.
(thumb*-*-coff, thumb*-*-pe*): Don;t handle.
* gas/arm/arm.exp (*arm*-*-*): Change to arm*-*-*.
(*xscale*-*-*): Don't handle.
* gas/cfi/cfi.exp (xscale*-*): Don't handle.
* gas/elf/elf.exp (*arm*-*-*): Change to arm*-*-*.
(xscale*-*-*): Don't handle.
ld:
* configure.tgt (thumb-*-linux-* | thumb-*-uclinux*,
strongarm-*-coff, strongarm-*-elf, strongarm-*-kaos*,
thumb-*-coff, thumb-*-elf, thumb-epoc-pe, thumb-*-pe,
xscale-*-coff, xscale-*-elf): Remove targets.
ld/testsuite:
* ld-selective/selective.exp (xscale-*-*): Don't handle.
* ld-srec/srec.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
(*arm*-*-*): Change to arm*-*-*.
(strongarm*-*-coff, xscale*-*-coff, thumb-*-coff*, thumb-*-pe*,
thumb-*-elf*, strongarm*-*-*, thumb-*-*): Remove xfails.
* ld-undefined/undefined.exp (thumb*-*-pe*, thumb*-*-pe*): Remove
commented-out xfails.
(thumb-elf): Remove reference in comment.
* lib/ld-lib.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
2011-04-06 17:09:56 +00:00
|
|
|
if {[istarget arm-*-*]} {
|
2007-09-30 15:26:43 +00:00
|
|
|
set libgcc [remote_exec host "$compiler -print-libgcc-file-name"]
|
2007-08-28 13:21:58 +00:00
|
|
|
set libgcc [lindex $libgcc 1]
|
|
|
|
regsub -all "\[\r\n\]" $libgcc "" libgcc
|
2004-12-01 21:12:39 +00:00
|
|
|
set objfile "$objfile $libgcc"
|
2002-01-14 15:46:50 +00:00
|
|
|
}
|
2002-02-12 11:10:11 +00:00
|
|
|
|
|
|
|
# HPPA linux targets need libgcc.a for millicode routines ($$dyncall).
|
|
|
|
if [istarget hppa*-*-linux*] {
|
2007-09-30 15:26:43 +00:00
|
|
|
set libgcc [remote_exec host "$compiler -print-libgcc-file-name"]
|
2007-08-28 13:21:58 +00:00
|
|
|
set libgcc [lindex $libgcc 1]
|
|
|
|
regsub -all "\[\r\n\]" $libgcc "" libgcc
|
2002-02-12 11:10:11 +00:00
|
|
|
set objfile "$objfile $libgcc"
|
|
|
|
}
|
|
|
|
|
2001-02-08 18:57:47 +00:00
|
|
|
# m6811/m6812 code has references to soft registers.
|
2012-02-14 01:02:04 +00:00
|
|
|
if {[istarget m6811-*-*] || [istarget m6812-*-*] || [istarget m68hc1*-*-*]} {
|
2001-02-08 18:57:47 +00:00
|
|
|
set objfile "$objfile --defsym _.frame=0 --defsym _.d1=0"
|
|
|
|
set objfile "$objfile --defsym _.d2=0"
|
|
|
|
}
|
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
if ![ld_simple_link $ld $ldfile "$ldflags [join $ldargs] $objfile"] {
|
|
|
|
fail $testname
|
|
|
|
continue
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-07-24 11:09:24 +00:00
|
|
|
if ![ld_nm $nm --demangle $ldfile] {
|
2000-10-09 01:35:13 +00:00
|
|
|
unresolved $testname
|
|
|
|
continue
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-07-24 11:09:24 +00:00
|
|
|
# Must make V2 demangled names look like V3
|
|
|
|
foreach nm_output_key [array names nm_output] {
|
|
|
|
if [regsub \\(void\\) $nm_output_key () new_nm_output_key] {
|
|
|
|
set nm_output($new_nm_output_key) nm_output($nm_output_key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-12 11:10:11 +00:00
|
|
|
# Check each mandated symbol and optionally mandated values.
|
2000-10-09 01:35:13 +00:00
|
|
|
foreach mustsym $mustsyms {
|
|
|
|
if { [llength [concat $mustsym]] == 1 } {
|
|
|
|
if { ![info exists nm_output($mustsym)] } {
|
|
|
|
verbose -log "$testname: missing $mustsym"
|
|
|
|
fail $testname
|
|
|
|
set failed 1
|
|
|
|
break
|
|
|
|
}
|
|
|
|
} {
|
|
|
|
set mustsymname [lindex $mustsym 0]
|
|
|
|
set mustsymvalue [lindex $mustsym 1]
|
|
|
|
if { ![info exists nm_output($mustsymname)] } {
|
|
|
|
verbose -log "$testname: missing $mustsymname"
|
|
|
|
fail $testname
|
|
|
|
set failed 1
|
|
|
|
break
|
|
|
|
} {
|
|
|
|
if { $nm_output($mustsymname) != $mustsymvalue } {
|
|
|
|
verbose -log "$testname: $mustsymname != $mustsymvalue"
|
|
|
|
verbose -log "is instead $nm_output($mustsymname)"
|
|
|
|
fail $testname
|
|
|
|
set failed 1
|
|
|
|
break
|
2000-04-12 12:47:25 +00:00
|
|
|
}
|
|
|
|
}
|
2000-04-12 03:44:15 +00:00
|
|
|
}
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
if { $failed != 0 } {
|
|
|
|
continue
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
# Check each unwanted symbol, or that symbols do not have specific
|
|
|
|
# values.
|
|
|
|
foreach mustnotsym $mustnotsyms {
|
|
|
|
if { [llength [concat $mustnotsym]] == 1 } {
|
|
|
|
if { [info exists nm_output($mustnotsym)] } {
|
|
|
|
verbose -log "$testname: $mustnotsym == $nm_output($mustnotsym)"
|
|
|
|
fail $testname
|
|
|
|
set failed 1
|
|
|
|
break
|
|
|
|
}
|
|
|
|
} {
|
|
|
|
set mustnotsymname [lindex $mustnotsym 0]
|
|
|
|
set mustnotsymvalue [lindex $mustnotsym 1]
|
|
|
|
if { [info exists nm_output($mustnotsymname)] \
|
|
|
|
&& $nm_output($mustnotsymname) == $mustnotsymvalue} {
|
|
|
|
verbose -log "$testname: $mustnotsymname == $mustnotsymvalue"
|
|
|
|
fail $testname
|
|
|
|
set failed 1
|
|
|
|
break
|
2000-04-12 03:44:15 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
2000-09-28 22:57:26 +00:00
|
|
|
|
2000-10-09 01:35:13 +00:00
|
|
|
if { $failed == 0 } {
|
|
|
|
pass $testname
|
2000-09-28 22:57:26 +00:00
|
|
|
}
|
|
|
|
}
|