Changeset 04803bf in mainline for uspace/lib/c/arch/abs32le/_link.ld.in
- Timestamp:
- 2011-03-21T22:00:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/lib/c/arch/abs32le/_link.ld.in (moved) (moved from uspace/lib/libc/arch/arm32/_link.ld.in ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/_link.ld.in
rb50b5af2 r04803bf 1 STARTUP(LIBC_P REFIX/arch/UARCH/src/entry.o)1 STARTUP(LIBC_PATH/arch/UARCH/src/entry.o) 2 2 ENTRY(__entry) 3 3 … … 9 9 SECTIONS { 10 10 . = 0x1000 + SIZEOF_HEADERS; 11 12 .init : { 13 *(.init); 14 } : text 11 15 12 .text : { 16 13 *(.text); 17 *(.rodata*);14 *(.rodata*); 18 15 } :text 19 16 20 17 . = . + 0x1000; 21 18 22 19 .data : { 23 *(.opd); 24 *(.data .data.*); 25 *(.sdata); 20 *(.data); 21 *(.data.rel*); 26 22 } :data 23 27 24 .tdata : { 28 25 _tdata_start = .; 29 26 *(.tdata); 27 *(.gnu.linkonce.tb.*); 30 28 _tdata_end = .; 31 29 _tbss_start = .; … … 33 31 _tbss_end = .; 34 32 } :data 33 35 34 _tls_alignment = ALIGNOF(.tdata); 35 36 .sbss : { 37 *(.scommon); 38 *(.sbss); 39 } 40 36 41 .bss : { 37 *(.sbss); 38 *(.scommon); 39 *(COMMON); 40 *(.bss); 42 *(COMMON); 43 *(.bss); 41 44 } :data 42 43 . = ALIGN(0x1000);44 _heap = .;45 45 46 46 /DISCARD/ : { 47 47 *(*); 48 48 } 49 50 49 }
Note:
See TracChangeset
for help on using the changeset viewer.
