Changeset 04803bf in mainline for uspace/lib/c/arch/arm32/_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/arm32/_link.ld.in (moved) (moved from uspace/lib/libc/arch/amd64/_link.ld.in ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/arm32/_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 … … 13 13 *(.init); 14 14 } :text 15 15 16 .text : { 16 17 *(.text); 17 18 *(.rodata*); 18 19 } :text 19 20 20 21 . = . + 0x1000; 21 22 22 23 .data : { 23 *(.data); 24 *(.opd); 25 *(.data .data.*); 26 *(.sdata); 24 27 } :data 28 25 29 .tdata : { 26 30 _tdata_start = .; … … 31 35 _tbss_end = .; 32 36 } :data 37 33 38 _tls_alignment = ALIGNOF(.tdata); 39 34 40 .bss : { 41 *(.sbss); 42 *(.scommon); 35 43 *(COMMON); 36 44 *(.bss); 37 45 } :data 38 39 . = ALIGN(0x1000);40 _heap = .;41 46 42 47 /DISCARD/ : { 43 48 *(*); 44 49 } 45 46 50 }
Note:
See TracChangeset
for help on using the changeset viewer.
