1 # Test DEFINED in a linker script.
2 # By Ian Lance Taylor
, Cygnus Support.
3 # Copyright
2001, 2003.
2006
4 # Free Software Foundation
, Inc.
6 # This file is free software
; you can redistribute it and
/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation
; either version
2 of the License
, or
9 #
(at your option
) any later version.
11 # This
program is distributed in the hope that it will be useful
,
12 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License
for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this
program; if not
, write to the Free Software
18 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
20 set testname
"DEFINED"
23 if ![ld_assemble $as $srcdir
/$subdir
/defined.s tmpdir
/def.o
] {
29 set saved_LDFLAGS
"$LDFLAGS"
30 if [istarget
"*-*-mingw64*"] then {
31 set LDFLAGS
"$LDFLAGS --image-base 0"
34 if ![ld_simple_link $
ld tmpdir
/def
"$LDFLAGS -T $srcdir/$subdir/defined.t tmpdir/def.o"] {
37 if ![ld_nm $nm
"" tmpdir/def] {
40 if {![info exists nm_output
(value1
)] \
41 ||
![info exists nm_output
(value2
)]} {
42 send_log
"bad output from nm\n"
43 verbose
"bad output from nm"
46 if {$nm_output
(value1
) != 1} {
47 send_log
"value1 == $nm_output(value1)\n"
48 verbose
"value1 == $nm_output(value1)"
51 if {$nm_output
(value2
) != 2} {
52 send_log
"value2 == $nm_output(value2)\n"
53 verbose
"value2 == $nm_output(value2)"
64 run_dump_test
"defined2"
65 run_dump_test
"defined3"
66 set LDFLAGS
"$saved_LDFLAGS"