Last change
on this file since 3003 was 10, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
367 bytes
|
Line | |
---|
1 | cat <<EOF
|
---|
2 | SECTIONS
|
---|
3 | {
|
---|
4 | .text :
|
---|
5 | {
|
---|
6 | ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
|
---|
7 | *(.text)
|
---|
8 | ${RELOCATING+ _etext = .};
|
---|
9 | ${CONSTRUCTING+${COFF_CTORS}}
|
---|
10 | }
|
---|
11 | .data :
|
---|
12 | {
|
---|
13 | *(.data)
|
---|
14 | ${CONSTRUCTING+CONSTRUCTORS}
|
---|
15 | ${RELOCATING+ _edata = .};
|
---|
16 | }
|
---|
17 | .bss :
|
---|
18 | {
|
---|
19 | ${RELOCATING+ _bss_start = .};
|
---|
20 | *(.bss)
|
---|
21 | *(COMMON)
|
---|
22 | ${RELOCATING+ _end = .};
|
---|
23 | }
|
---|
24 | }
|
---|
25 | EOF
|
---|
Note:
See
TracBrowser
for help on using the repository browser.