mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
Fix fixupobj regression on MacOS ARM64
This commit is contained in:
parent
4d018306b3
commit
77ddf4cb07
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -622,7 +622,7 @@ static void FixupObject(void) {
|
|||
SysExit("lseek");
|
||||
}
|
||||
if (esize) {
|
||||
if ((elf = mmap((void *)0x003210000000, esize, PROT_READ | PROT_WRITE,
|
||||
if ((elf = mmap((void *)0x032100000000, esize, PROT_READ | PROT_WRITE,
|
||||
MAP_FIXED | MAP_SHARED, fildes, 0)) == MAP_FAILED) {
|
||||
SysExit("mmap");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue