Changeset 47b2d7e3 in mainline for uspace/lib/c/arch/riscv64/_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/riscv64/_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 debug PT_NOTE; … … 15 13 SECTIONS { 16 14 #ifdef LOADER 17 . = 0x70001000 + SIZEOF_HEADERS;15 . = SEGMENT_START("text-segment", 0x70400000); 18 16 #else 19 . = 0x1000 + SIZEOF_HEADERS;17 . = SEGMENT_START("text-segment", 0x400000); 20 18 #endif 19 #ifndef SHLIB 20 PROVIDE (__executable_start = .); 21 #endif 22 . = . + SIZEOF_HEADERS; 21 23 22 24 .text : {
Note:
See TracChangeset
for help on using the changeset viewer.