source: rtems/c/src/lib/libbsp/m68k/idp/startup/linkcmds @ a314d3b4

4.104.114.84.95
Last change on this file since a314d3b4 was 9f30a08b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/29/00 at 14:25:46

2000-09-29 Charles-Antoine Gauthier <charles.gauthier@…>

  • startup/linkcmds: Added lines so DWARF debug information would be available. Otherwise gdb complains that the offsets for the debug info are incorrect and doesn't load the files.
  • Property mode set to 100644
File size: 4.6 KB
Line 
1/* This file is a derivation of that found with the newlib-1.6 distribution
2 * for the idp.ld file.  That file, it appears, was originally written by
3 * Rob Savoye.  Other ideas came from Joel Sherrill for the RTEMS linkcmds
4 * file (this is basically a mixture of the two).
5 *
6 *  $Id$
7 */
8
9/*
10 * Setup the memory map of the MC68ec0x0 Board (IDP)
11 * stack grows up towards high memory. This works for
12 * both the rom68k and the mon68k monitors.
13 */
14
15MEMORY
16{
17     ram : org = 0x10000, l = 2M
18}
19
20/*
21 * Declare some sizes.
22 */
23_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0;
24_RamSize = DEFINED(_RamSize) ? _RamSize : 2M;
25_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x10000;
26_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
27
28SECTIONS
29{
30        ram : {
31                . = .;
32        } >ram
33
34        /*
35         * Text, data and bss segments
36         */
37        .text : {
38                *(.text)
39
40                /*
41                 * C++ constructors/destructors
42                 */
43                *(.gnu.linkonce.t.*)
44
45                /*
46                 * Initialization and finalization code.
47                 *
48                 * Various files can provide initialization and finalization
49                 * functions.  crtbegin.o and crtend.o are two instances. The
50                 * body of these functions are in .init and .fini sections. We
51                 * accumulate the bodies here, and prepend function prologues
52                 * from crti.o and function epilogues from crtn.o. crti.o must
53                 * be linked first; crtn.o must be linked last.  Because these
54                 * are wildcards, it doesn't matter if the user does not
55                 * actually link against crti.o and crtn.o; the linker won't
56                 * look for a file to match a wildcard.  The wildcard also
57                 * means that it doesn't matter which directory crti.o and
58                 * crtn.o are in.
59                 */
60                PROVIDE (_init = .);
61                *crti.o(.init)
62                *(.init)
63                *crtn.o(.init)
64                PROVIDE (_fini = .);
65                *crti.o(.fini)
66                *(.fini)
67                *crtn.o(.fini)
68
69                /*
70                 * C++ constructors/destructors
71                 *
72                 * gcc uses crtbegin.o to find the start of the constructors
73                 * and destructors so we make sure it is first.  Because this
74                 * is a wildcard, it doesn't matter if the user does not
75                 * actually link against crtbegin.o; the linker won't look for
76                 * a file to match a wildcard.  The wildcard also means that
77                 * it doesn't matter which directory crtbegin.o is in. The
78                 * constructor and destructor list are terminated in
79                 * crtend.o.  The same comments apply to it.
80                 */
81                . = ALIGN (16);
82                *crtbegin.o(.ctors)
83                *(.ctors)
84                *crtend.o(.ctors)
85                *crtbegin.o(.dtors)
86                *(.dtors)
87                *crtend.o(.dtors)
88
89                /*
90                 * Exception frame info
91                 */
92                . = ALIGN (16);
93                *(.eh_frame)
94
95                /*
96                 * Read-only data
97                 */
98                . = ALIGN (16);
99                _rodata_start = . ;
100                *(.rodata)
101                *(.gnu.linkonce.r*)
102
103                 . = ALIGN (16);
104                PROVIDE (_etext = .);
105        } >ram
106        .data : {
107                PROVIDE (_copy_start = .);
108                *(.data)
109                *(.gnu.linkonce.d*)
110                *(.gcc_except_table)
111                . = ALIGN (16);
112                PROVIDE (_edata = .);
113                PROVIDE (_copy_end = .);
114        } >ram
115        .bss : {
116                _clear_start = .;
117                *(.bss)
118                *(COMMON)
119                . = ALIGN (16);
120                PROVIDE (end = .);
121
122                . += _StackSize;
123                . = ALIGN (16);
124                _stack_init = .;
125                _clear_end = .;
126
127                _WorkspaceBase = .;
128        } >ram
129
130  /* Stabs debugging sections.  */
131  .stab 0 : { *(.stab) }
132  .stabstr 0 : { *(.stabstr) }
133  .stab.excl 0 : { *(.stab.excl) }
134  .stab.exclstr 0 : { *(.stab.exclstr) }
135  .stab.index 0 : { *(.stab.index) }
136  .stab.indexstr 0 : { *(.stab.indexstr) }
137  .comment 0 : { *(.comment) }
138
139  /* DWARF debug sections.
140     Symbols in the DWARF debugging sections are relative to the beginning
141     of the section so we begin them at 0.  */
142  /* DWARF 1 */
143  .debug          0 : { *(.debug) }
144  .line           0 : { *(.line) }
145 
146  /* GNU DWARF 1 extensions */
147  .debug_srcinfo  0 : { *(.debug_srcinfo) }
148  .debug_sfnames  0 : { *(.debug_sfnames) }
149 
150  /* DWARF 1.1 and DWARF 2 */
151  .debug_aranges  0 : { *(.debug_aranges) }
152  .debug_pubnames 0 : { *(.debug_pubnames) }
153 
154  /* DWARF 2 */
155  .debug_info     0 : { *(.debug_info) }
156  .debug_abbrev   0 : { *(.debug_abbrev) }
157  .debug_line     0 : { *(.debug_line) }
158  .debug_frame    0 : { *(.debug_frame) }
159  .debug_str      0 : { *(.debug_str) }
160  .debug_loc      0 : { *(.debug_loc) }
161  .debug_macinfo  0 : { *(.debug_macinfo) }
162 
163  /* SGI/MIPS DWARF 2 extensions */
164  .debug_weaknames 0 : { *(.debug_weaknames) }
165  .debug_funcnames 0 : { *(.debug_funcnames) }
166  .debug_typenames 0 : { *(.debug_typenames) }
167  .debug_varnames  0 : { *(.debug_varnames) }
168  /* These must appear regardless of  .  */
169}
Note: See TracBrowser for help on using the repository browser.