mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
Fix Android support
Thanks to @aj47 (techfren.net) the new Cosmo memory manager is confirmed to be working on Android!! The only issue turned out to be forgetting to update the program address in the linker script. We now know w/ absolute certainty that APE binaries as complex as llamafile, now work correctly.
This commit is contained in:
parent
44191b3f50
commit
78d3b86ec7
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ OUTPUT_FORMAT("elf64-littleaarch64",
|
||||||
|
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
|
|
||||||
. = SEGMENT_START("text-segment", 0x010000000000);
|
. = SEGMENT_START("text-segment", 0x000800000000);
|
||||||
__executable_start = .;
|
__executable_start = .;
|
||||||
. += SIZEOF_HEADERS;
|
. += SIZEOF_HEADERS;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue