elf.c: section limit inference for linux, fixes for stb_ds.h hashing, more compilation flags

This commit is contained in:
2024-07-28 01:44:39 +03:00
parent 36dcf14db7
commit 5ddf0eb879
9 changed files with 137 additions and 33 deletions

10
src/system/linux/elf.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef ELF_H
#define ELF_H
#include <stdbool.h>
bool infer_elf_section_bounds(const char *restrict name,
const char **restrict vm_start,
const char **restrict vm_end);
#endif