Changeset f563126 in mainline for uspace/lib/libc/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/lib/libc/arch/ia32/_link.ld.in
rd57e08f rf563126 3 3 4 4 PHDRS { 5 5 text PT_LOAD FLAGS(5); 6 6 data PT_LOAD FLAGS(6); 7 7 } … … 9 9 SECTIONS { 10 10 . = 0x1000 + SIZEOF_HEADERS; 11 11 12 12 .init : { 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 24 *(.data); 24 25 } :data 26 25 27 .tdata : { 26 28 _tdata_start = .; 27 29 *(.tdata); 30 *(.gnu.linkonce.tb.*); 28 31 _tdata_end = .; 29 32 _tbss_start = .; … … 31 34 _tbss_end = .; 32 35 } :data 36 33 37 _tls_alignment = ALIGNOF(.tdata); 38 34 39 .bss : { 35 36 40 *(COMMON); 41 *(.bss); 37 42 } :data 38 43 39 44 . = ALIGN(0x1000); 45 40 46 _heap = .; 41 47 … … 43 49 *(*); 44 50 } 45 46 51 }
Note:
See TracChangeset
for help on using the changeset viewer.