Update year range in copyright notice of all files.
[deliverable/binutils-gdb.git] / ld / scripttempl / DWARF.sc
CommitLineData
2571583a 1# Copyright (C) 2014-2017 Free Software Foundation, Inc.
985743c7
NC
2#
3# Copying and distribution of this file, with or without modification,
4# are permitted in any medium without royalty provided the copyright
5# notice and this notice are preserved.
6#
ceb0a680
NC
7cat <<EOF
8 /* DWARF debug sections.
9 Symbols in the DWARF debugging sections are relative to the beginning
10 of the section so we begin them at 0. */
11
12 /* DWARF 1 */
13 .debug 0 : { *(.debug) }
14 .line 0 : { *(.line) }
15
16 /* GNU DWARF 1 extensions */
17 .debug_srcinfo 0 : { *(.debug_srcinfo) }
18 .debug_sfnames 0 : { *(.debug_sfnames) }
19
20 /* DWARF 1.1 and DWARF 2 */
21 .debug_aranges 0 : { *(.debug_aranges) }
22 .debug_pubnames 0 : { *(.debug_pubnames) }
23
24 /* DWARF 2 */
25 .debug_info 0 : { *(.debug_info${RELOCATING+ .gnu.linkonce.wi.*}) }
26 .debug_abbrev 0 : { *(.debug_abbrev) }
b40bf0a2 27 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
ceb0a680
NC
28 .debug_frame 0 : { *(.debug_frame) }
29 .debug_str 0 : { *(.debug_str) }
30 .debug_loc 0 : { *(.debug_loc) }
31 .debug_macinfo 0 : { *(.debug_macinfo) }
32
33 /* SGI/MIPS DWARF 2 extensions */
34 .debug_weaknames 0 : { *(.debug_weaknames) }
35 .debug_funcnames 0 : { *(.debug_funcnames) }
36 .debug_typenames 0 : { *(.debug_typenames) }
37 .debug_varnames 0 : { *(.debug_varnames) }
38
39 /* DWARF 3 */
40 .debug_pubtypes 0 : { *(.debug_pubtypes) }
41 .debug_ranges 0 : { *(.debug_ranges) }
42
43 /* DWARF Extension. */
44 .debug_macro 0 : { *(.debug_macro) }
ab2c2251 45 .debug_addr 0 : { *(.debug_addr) }
ceb0a680 46EOF
This page took 0.165149 seconds and 4 git commands to generate.