1 # Test that the linker reports undefined symbol errors correctly.
2 # By Ian Lance Taylor
, Cygnus Support
4 # Copyright
1995, 1996, 1997, 1998, 1999, 2000, 2001
5 # Free Software Foundation
, Inc.
7 # This file is free software
; you can redistribute it and
/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation
; either version
2 of the License
, or
10 #
(at your option
) any later version.
12 # This
program is distributed in the hope that it will be useful
,
13 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License
for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this
program; if not
, write to the Free Software
19 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
21 set testund
"undefined"
22 set testfn
"undefined function"
23 set testline
"undefined line"
25 if { [which $CC
] == 0 } {
26 verbose
"Could not find C compiler!" 1
33 if ![ld_compile
"$CC -g" $srcdir/$subdir/undefined.c tmpdir/undefined.o] {
34 verbose
"Unable to compile test file!" 1
41 catch
"exec rm -f tmpdir/undefined" exec_output
43 set flags
[big_or_little_endian
]
45 # Using
-e start prevents the SunOS linker from trying to build a
47 send_log
"$ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o\n"
48 verbose
"$ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o"
50 catch
"exec $ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o" exec_output
51 send_log
"$exec_output\n"
52 verbose
"$exec_output"
54 proc checkund
{ string testname
} {
57 if [string match
"*$string*" $exec_output] {
64 set mu
"undefined reference to `*this_function_is_not_defined'"
67 # ARM PE defaults to using stabs debugging
, which we can
't handle for
69 #setup_xfail "arm*-*-pe*"
70 #setup_xfail "thumb*-*-pe*"
72 # Just doesn't work
for PA ELF. No clue why.
73 setup_xfail
"hppa*-*-*elf*"
75 # With dwarf
-2, we can
't get the function in which the reference
77 setup_xfail "alpha*-*-linux*"
78 setup_xfail "hppa*64*-*-*"
79 setup_xfail "mn10300-*-elf"
82 set mf "tmpdir/undefined.o* In function `function':"
85 # COFF SH gets this test wrong
--it reports line
10, because although
86 # the jump is at line
9, the function address
, and the reloc
, is
87 # stored at the end of the function.
90 # ARM PE defaults to using stabs debugging
, which we can
't handle for
92 #setup_xfail "arm*-*-pe*"
93 #setup_xfail "thumb*-*-pe*"
95 # Just doesn't work
for PA ELF. No clue why.
96 setup_xfail
"hppa*-*-*elf*"
98 set ml
"undefined.c:9: undefined reference to `*this_function_is_not_defined'"
99 # With targets that use elf
/dwarf2
, such as the arm
-elf and thumb
-elf
100 # toolchains
, the code in bfd
/elf.c
:_bfd_elf_find_nearest_line
() is called
101 # in order to locate the file
name/line number where the undefined
102 # reference occurs. Unfortunately this tries to use the dwarf2 debug
103 # information held in the .debug_info section. This section contains a series
104 # of comp_unit structures
, each of which has a low
/high address range
105 # representing the span of memory locations covered by that structure. The
106 # structures also index into other structures held in the .debug_line section
107 # and together they can
translate memory locations
back into file
/function
/line
108 # number addresses in the source code. Since the information about the memory
109 # region covered by a comp_unit is only determined at link time
, the low
/high
110 # addresses in the .debug_info section and the line addresses in the .debug_line
111 # section are computed by generating relocs against known symbols in the object
114 # When the undefined reference is detected
, the relocs in the dwarf2
115 # debug sections have not yet been resolved
, so the low
/high addresses and the
116 # line number address are all
set at zero. Thus when _bfd_elf_find_nearest_line
()
117 # calls _bfd_dwarf2_find_nearest_line
() no comp_unit can be found which
118 # actually covers the address where the reference occured
, and so
119 # _bfd_elf_find_nearest_line
() fails.
121 # The upshot of all of this
, is that the error message reported by the
122 # linker
, instead of having a source file
name & line number as in
:
124 # undefined.c
:9: undefined reference to `this_function_is_not_defined
'
126 # has an object file & section address instead:
128 # undefined.0(.text+0xc): undefined reference to `this_function_is_not_defined'
130 # hence the xfails below.
132 #setup_xfail arm
-*-elf
133 setup_xfail i?
86-*-freebsd
*
134 #setup_xfail strongarm
-*-elf
135 #setup_xfail thumb
-*-elf
136 setup_xfail mcore
-*-elf
137 setup_xfail mips
-sgi
-irix6
*
138 setup_xfail
"sh64-*-*"
140 # The undefined test fails
on 31 bit s
/390 because the address of the
141 # function `this_function_is_not_defined
' is stored in the literal pool of
142 # the function. Therefore the line number in the error message is 8 instead
143 # of 9. On 64 bit s/390 this works because of the new brasl instruction that
144 # doesn't need a literal pool entry.
145 # With gcc
3.1 s
/390 uses dwarf
-2 and the test will fail
on 64 bit as well.
147 setup_xfail s390x
-*-*
149 checkund $ml $testline