Changeset 47b2d7e3 in mainline for uspace/lib/c/arch/abs32le/_link.ld.in
- Timestamp:
- 2018-03-30T21:35:15Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1433ecda
- Parents:
- 5b8f731
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/_link.ld.in
r5b8f731 r47b2d7e3 5 5 #ifdef LOADER 6 6 interp PT_INTERP; 7 #endif 7 8 text PT_LOAD FILEHDR PHDRS FLAGS(5); 8 #else9 text PT_LOAD FLAGS(5);10 #endif11 9 data PT_LOAD FLAGS(6); 12 10 } … … 14 12 SECTIONS { 15 13 #ifdef LOADER 16 . = 0x70001000 + SIZEOF_HEADERS;14 . = SEGMENT_START("text-segment", 0x70400000); 17 15 #else 18 . = 0x1000 + SIZEOF_HEADERS;16 . = SEGMENT_START("text-segment", 0x400000); 19 17 #endif 18 #ifndef SHLIB 19 PROVIDE (__executable_start = .); 20 #endif 21 . = . + SIZEOF_HEADERS; 20 22 21 23 .text : {
Note:
See TracChangeset
for help on using the changeset viewer.