mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 15:12:04 +03:00
textrel support, cheap and ugly
This commit is contained in:
parent
2cee45762a
commit
9f17413c75
@ -248,6 +248,11 @@ static void *map_library(int fd, size_t *lenp, unsigned char **basep, size_t *dy
|
||||
}
|
||||
}
|
||||
}
|
||||
for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
|
||||
if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
|
||||
mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC);
|
||||
break;
|
||||
}
|
||||
if (!runtime) reclaim_gaps(base, (void *)((char *)buf + eh->e_phoff),
|
||||
eh->e_phentsize, eh->e_phnum);
|
||||
*lenp = map_len;
|
||||
|
Loading…
Reference in New Issue
Block a user