Changeset f563126 in mainline for uspace/srv/loader/arch/ia32/_link.ld.in
- Timestamp:
- 2009-10-06T15:06:15Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 100aaf5
- Parents:
- d57e08f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/arch/ia32/_link.ld.in
rd57e08f rf563126 8 8 PHDRS { 9 9 interp PT_INTERP; 10 10 text PT_LOAD FILEHDR PHDRS FLAGS(5); 11 11 data PT_LOAD FLAGS(6); 12 12 } … … 16 16 *(.interp); 17 17 } :interp 18 18 19 19 . = 0x70001000; 20 20 21 21 .init ALIGN(0x1000) : SUBALIGN(0x1000) { 22 22 *(.init); 23 23 } :text 24 24 25 .text : { 25 26 *(.text); 26 27 *(.rodata*); 27 28 } :text 28 29 … … 30 31 *(.data); 31 32 } :data 33 32 34 .tdata : { 33 35 _tdata_start = .; 34 36 *(.tdata); 37 *(.gnu.linkonce.tb.*); 35 38 _tdata_end = .; 36 39 } :data 40 37 41 .tbss : { 38 42 _tbss_start = .; … … 40 44 _tbss_end = .; 41 45 } :data 46 42 47 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)); 48 43 49 .bss : { 44 45 50 *(COMMON); 51 *(.bss); 46 52 } :data 47 53 48 54 . = ALIGN(0x1000); 55 49 56 _heap = .; 50 57 … … 52 59 *(*); 53 60 } 54 55 61 }
Note:
See TracChangeset
for help on using the changeset viewer.