Changeset a3aa1e1 in mainline for libc/arch/ia32/_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/ia32/_link.ld.in
r8f9239e ra3aa1e1 3 3 4 4 PHDRS { 5 image PT_LOAD AT (0x1000); 5 text PT_LOAD FLAGS(5); 6 data PT_LOAD FLAGS(6); 6 7 } 7 8 8 9 SECTIONS { 10 . = 0x1000; 11 12 .init ALIGN(0x1000) : SUBALIGN(0x1000) { 13 *(.init); 14 } :text 15 .text : { 16 *(.text); 17 *(.rodata*); 18 } :text 9 19 10 . = 0x1000; 11 .image 0x00001000 : { 12 *(.text); 13 *(.data); /* initialized data */ 14 *(.rodata*); /* string literals */ 15 *(COMMON); /* global variables */ 16 *(.bss); /* uninitialized static variables */ 17 } :image 20 .data ALIGN(0x1000) : SUBALIGN(0x1000) { 21 *(.data); 22 } :data 23 .bss : { 24 *(COMMON); 25 *(.bss); 26 } :data 18 27 19 28 /DISCARD/ : { 20 *(.note.GNU-stack); 21 *(.comment); 29 *(*); 22 30 } 23 31
Note:
See TracChangeset
for help on using the changeset viewer.