Changeset cfa70add in mainline for uspace/libc/arch/sparc64/_link.ld.in
- Timestamp:
- 2006-09-03T23:37:14Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fd85ae5
- Parents:
- 002e613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/arch/sparc64/_link.ld.in
r002e613 rcfa70add 8 8 9 9 SECTIONS { 10 . = 0x 1000;10 . = 0x2000; 11 11 12 .init ALIGN(0x 1000) : SUBALIGN(0x1000) {12 .init ALIGN(0x2000) : SUBALIGN(0x2000) { 13 13 *(.init); 14 14 } :text … … 18 18 } :text 19 19 20 .data ALIGN(0x1000) : SUBALIGN(0x1000) { 20 .got ALIGN(0x2000) : SUBALIGN(0x2000) { 21 _gp = .; 22 *(.got*); 23 } :data 24 .data ALIGN(0x2000) : SUBALIGN(0x2000) { 21 25 *(.data); 22 26 *(.sdata); … … 38 42 } :data 39 43 40 . = ALIGN(0x 1000);44 . = ALIGN(0x2000); 41 45 _heap = .; 42 46
Note:
See TracChangeset
for help on using the changeset viewer.