Changeset a3aa1e1 in mainline for libc/arch/mips32/_link.ld.in
- Timestamp:
- 2006-03-13T12:29:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b419162
- Parents:
- 8f9239e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/arch/mips32/_link.ld.in
r8f9239e ra3aa1e1 2 2 ENTRY(__entry) 3 3 4 PHDRS { 5 text PT_LOAD FLAGS(5); 6 data PT_LOAD FLAGS(6); 7 } 8 4 9 SECTIONS { 5 10 . = 0x4000; 6 .init : SUBALIGN(0x4000) { 11 12 .init ALIGN(0x4000) : SUBALIGN(0x4000) { 7 13 *(.init); 8 } 14 } :text 9 15 .text : { 10 16 *(.text); 11 17 *(.rodata*); 12 } 13 .data ALIGN(0x4000) : { 18 } :text 19 20 .data ALIGN(0x4000) : SUBALIGN(0x4000) { 14 21 *(.data); 15 } 22 } :data 16 23 .bss : { 17 24 *(.bss); 18 25 *(.sbss); 19 26 *(COMMON); 20 } 27 } :data 28 21 29 /DISCARD/ : { 22 30 *(*);
Note:
See TracChangeset
for help on using the changeset viewer.