This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / ldgld960.sc
1 SECTIONS
2 {
3 .text :
4 {
5 CREATE_OBJECT_SYMBOLS
6 *(.text)
7 _etext = .;
8 }
9
10 .data SIZEOF(.text) + ADDR(.text):
11 {
12
13 *(.data)
14 _edata = .;
15 }
16 .bss SIZEOF(.data) + ADDR(.data) :
17 {
18 _bss_start = .;
19 *(.bss)
20 *(COMMON)
21 _end = . ;
22 }
23 }
This page took 0.036276 seconds and 4 git commands to generate.