Changeset fcfd002 in mainline for uspace/srv/loader/arch/ppc32/_link.ld.in
- Timestamp:
- 2011-04-29T20:59:37Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53d906
- Parents:
- bae7bdc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/arch/ppc32/_link.ld.in
rbae7bdc rfcfd002 18 18 } :interp 19 19 20 . = 0x70001000 ;20 . = 0x70001000 + SIZEOF_HEADERS; 21 21 22 .init ALIGN(0x1000) : SUBALIGN(0x1000){22 .init : { 23 23 *(.init); 24 24 } :text … … 29 29 } :text 30 30 31 .data ALIGN(0x1000) : SUBALIGN(0x1000) { 31 . = . + 0x1000; 32 33 .data : { 32 34 *(.data); 33 35 *(.sdata); … … 38 40 *(.tdata); 39 41 _tdata_end = .; 40 } :data41 42 .tbss : {43 42 _tbss_start = .; 44 43 *(.tbss); … … 46 45 } :data 47 46 48 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));47 _tls_alignment = ALIGNOF(.tdata); 49 48 50 49 .bss : {
Note:
See TracChangeset
for help on using the changeset viewer.