Add x86_64-mingw64 target
[binutils.git] / ld / testsuite / ld-fastcall / fastcall.exp
blob30f0575cbb90cd74ac73c42dd603035fd3d92622
1 # Test that the linker can handle fastcall symbols correctly.
2 # Copyright 2002, 2006 Free Software Foundation, Inc.
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
18 set testname "ld (fastcall symbols)"
20 if {![istarget "i*86-*-*"] && ![istarget "x86_64-*-mingw64*"] } {
21 return
24 if { !([istarget "i*86-*-*pe*"] && ![istarget "i*86-*-opensd*"]) \
25 && ![istarget "i*86-*-cygwin*"] \
26 && ![istarget "i*86-*-mingw*"] } {
27 return
30 set ldflags ""
32 if ![ld_assemble $as $srcdir/$subdir/export.s tmpdir/export.o] {
33 verbose "Unable to assemble test file!" 1
34 unresolved $testname
35 return
38 if ![ld_assemble $as $srcdir/$subdir/import.s tmpdir/import.o] {
39 verbose "Unable to assemble test file!" 1
40 unresolved $testname
41 return
44 if ![ld_simple_link $ld tmpdir/extern.x "$ldflags tmpdir/export.o tmpdir/import.o"] {
45 fail $testname
46 } else {
47 pass $testname