Skip to content
Snippets Groups Projects
Commit b05d8df5 authored by 8tab's avatar 8tab
Browse files

Restore previous load address for ld_so

Current value gives us 0x1234000 - 0x400000 ~ 14 MB for executable,
which is too low for certain programs.
parent c000373a
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ SEARCH_DIR("/usr/lib"); ...@@ -21,7 +21,7 @@ SEARCH_DIR("/usr/lib");
SECTIONS SECTIONS
{ {
/* Read-only sections, merged into text segment: */ /* Read-only sections, merged into text segment: */
PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x12340000)); . = SEGMENT_START("text-segment", 0x1234000) + SIZEOF_HEADERS; PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x400000)); . = SEGMENT_START("text-segment", 0x20000000) + SIZEOF_HEADERS;
.interp : { *(.interp) } .interp : { *(.interp) }
.note.gnu.build-id : { *(.note.gnu.build-id) } .note.gnu.build-id : { *(.note.gnu.build-id) }
.hash : { *(.hash) } .hash : { *(.hash) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment