source: mainline/libc/arch/ppc64/_link.ld.in@ 6862338

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6862338 was 6862338, checked in by Martin Decky <martin@…>, 19 years ago

add missing stuff

  • Property mode set to 100644
File size: 609 bytes
Line 
1STARTUP(../libc/arch/ARCH/src/entry.o)
2ENTRY(__entry)
3
4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
9SECTIONS {
10 . = 0x1000;
11
12 .init ALIGN(0x1000) : SUBALIGN(0x1000) {
13 *(.init);
14 } :text
15 .text : {
16 *(.text);
17 *(.toc);
18 *(.rodata*);
19 } :text
20
21 .data ALIGN(0x1000) : SUBALIGN(0x1000) {
22 *(.opd);
23 *(.data*);
24 *(.sdata);
25 } :data
26 .tdata : {
27 _tdata_start = .;
28 *(.tdata);
29 _tdata_end = .;
30 } :data
31 .tbss : {
32 _tbss_start = .;
33 *(.tbss);
34 _tbss_end = .;
35 } :data
36 .bss : {
37 *(.sbss);
38 *(COMMON);
39 *(.bss);
40 _heap = .;
41 LONG(0xdeadbeef);
42 } :data
43
44 /DISCARD/ : {
45 *(*);
46 }
47
48}
Note: See TracBrowser for help on using the repository browser.