mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
c65c21e1ff
Also tidies some other aout leftovers in binutils-common.exp. bfd/ * Makefile.am: Remove support for assorted i386 aout and coff targets. * config.bfd: Likewise. * configure.ac: Likewise. * doc/bfdint.texi: Likewise. * targets.c: Likewise. * freebsd.h: Delete. * i386dynix.c: Delete. * i386freebsd.c: Delete. * i386linux.c: Delete. * i386mach3.c: Delete. * i386netbsd.c: Delete. * i386os9k.c: Delete. * Makefile.in: Regenerate. * configure: Regenerate. * po/SRC-POTFILES.in: Regenerate. binutils/ * testsuite/lib/binutils-common.exp: Remove support for assorted aout targets. gas/ * Makefile.am: Remove support for assorted i386 aout and coff targets. * config/obj-elf.c: Likewise. * config/tc-i386.h: Likewise. * configure.ac: Likewise. * configure.tgt: Likewise. * config/te-dynix.h: Delete. * config/te-i386aix.h: Delete. * config/te-mach.h: Delete. * Makefile.in: Regenerate. * config.in: Regenerate. * configure: Regenerate. * po/POTFILES.in: Regenerate. include/ * aout/dynix3.h: Delete. ld/ * Makefile.am: Remove support for assorted i386 aout and coff targets. * configure.tgt: Likewise. * testsuite/ld-discard/discard.exp: Likewise. * testsuite/ld-elf/binutils.exp: Likewise. * testsuite/ld-elf/tls.exp: Likewise. * testsuite/ld-elf/tls_common.exp: Likewise. * testsuite/ld-elfvers/vers.exp: Likewise. * testsuite/ld-elfvsb/elfvsb.exp: Likewise. * testsuite/ld-elfweak/elfweak.exp: Likewise. * testsuite/ld-gc/abi-note.d: Likewise. * testsuite/ld-gc/pr19167.d: Likewise. * testsuite/ld-gc/pr20022.d: Likewise. * testsuite/ld-gc/start.d: Likewise. * testsuite/ld-gc/stop.d: Likewise. * testsuite/ld-i386/i386.exp: Likewise. * testsuite/ld-ifunc/binutils.exp: Likewise. * testsuite/ld-ifunc/ifunc.exp: Likewise. * testsuite/ld-linkonce/linkonce.exp: Likewise. * testsuite/ld-plugin/lto.exp: Likewise. * testsuite/ld-scripts/empty-address-2a.d: Likewise. * testsuite/ld-scripts/empty-address-2b.d: Likewise. * testsuite/ld-scripts/phdrs2.exp: Likewise. * testsuite/ld-scripts/section-match-1.d: Likewise. * testsuite/ld-shared/shared.exp: Likewise. * testsuite/ld-size/size.exp: Likewise. * testsuite/ld-sparc/sparc.exp: Likewise. * emulparams/i386coff.sh: Delete. * emulparams/i386linux.sh: Delete. * emulparams/i386mach.sh: Delete. * emulparams/i386nbsd.sh: Delete. * emulparams/vsta.sh: Delete. * scripttempl/i386coff.sc: Delete. * Makefile.in: Regenerate. * po/BLD-POTFILES.in: Regenerate.
90 lines
2.8 KiB
Plaintext
90 lines
2.8 KiB
Plaintext
# Expect script for .tls_common tests
|
|
# Copyright (C) 2006-2018 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of the GNU Binutils.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
#
|
|
# Written by Jakub Jelinek (jakub@redhat.com)
|
|
#
|
|
|
|
# Make sure that binutils can correctly handle ld output in ELF.
|
|
|
|
if { ![istarget *-*-linux*]
|
|
&& ![istarget *-*-nacl*]
|
|
&& ![istarget *-*-gnu*] } {
|
|
return
|
|
}
|
|
|
|
global as
|
|
global ld
|
|
global READELF
|
|
global srcdir
|
|
global subdir
|
|
global link_output
|
|
|
|
if { ![ld_assemble $as "--elf-stt-common=no $srcdir/$subdir/tls_common.s" tmpdir/tls_commona.o]
|
|
|| ![ld_assemble $as "--elf-stt-common=yes $srcdir/$subdir/tls_common.s" tmpdir/tls_commonb.o] } {
|
|
unresolved "tls_common"
|
|
return
|
|
}
|
|
|
|
if { ![ld_link $ld tmpdir/tls_common1a.o "-r tmpdir/tls_commona.o"]
|
|
|| ![ld_link $ld tmpdir/tls_common1b.o "-r tmpdir/tls_commona.o"] } {
|
|
fail "tls_common"
|
|
return
|
|
}
|
|
|
|
if { ![ld_link $ld tmpdir/tls_commona "tmpdir/tls_common1a.o"] } {
|
|
if { [string match "*not supported*" $link_output]
|
|
|| [string match "*unrecognized option*" $link_output] } {
|
|
unsupported "$ld_options is not supported by this target"
|
|
} elseif { [string match "*warning*alignment*of common symbol*" $link_output] } {
|
|
fail "tls_common"
|
|
} else {
|
|
unresolved "tls_common"
|
|
}
|
|
return
|
|
}
|
|
|
|
if { ![ld_link $ld tmpdir/tls_commonb "tmpdir/tls_common1b.o"] } {
|
|
if { [string match "*not supported*" $link_output]
|
|
|| [string match "*unrecognized option*" $link_output] } {
|
|
unsupported "$ld_options is not supported by this target"
|
|
} elseif { [string match "*warning*alignment*of common symbol*" $link_output] } {
|
|
fail "tls_common"
|
|
} else {
|
|
unresolved "tls_common"
|
|
}
|
|
return
|
|
}
|
|
|
|
set readelf_output [run_host_cmd "$READELF" "-l --wide tmpdir/tls_commona"]
|
|
if ![regexp ".*TLS.*0x0+ 0x0+4 R .*" $readelf_output] then {
|
|
send_log "$readelf_output\n"
|
|
fail "tls_common"
|
|
return
|
|
}
|
|
|
|
set readelf_output [run_host_cmd "$READELF" "-l --wide tmpdir/tls_commona"]
|
|
if ![regexp ".*TLS.*0x0+ 0x0+4 R .*" $readelf_output] then {
|
|
send_log "$readelf_output\n"
|
|
fail "tls_common"
|
|
return
|
|
}
|
|
|
|
pass "tls_common"
|