mirror of
https://github.com/frida/tinycc
synced 2024-12-28 23:59:41 +03:00
tccelf: layout_sections: add missing param strsec
This fixes compilation on (k)FreeBSD.
This commit is contained in:
parent
b84cdf6214
commit
63376d7712
7
tccelf.c
7
tccelf.c
@ -1844,8 +1844,8 @@ struct dyn_inf {
|
||||
/* Assign sections to segments and decide how are sections laid out when loaded
|
||||
in memory. This function also fills corresponding program headers. */
|
||||
static int layout_sections(TCCState *s1, ElfW(Phdr) *phdr, int phnum,
|
||||
Section *interp, struct dyn_inf *dyninf,
|
||||
int *sec_order)
|
||||
Section *interp, Section* strsec,
|
||||
struct dyn_inf *dyninf, int *sec_order)
|
||||
{
|
||||
int i, j, k, file_type, sh_order_index, file_offset;
|
||||
unsigned long s_align;
|
||||
@ -2428,7 +2428,8 @@ static int elf_output_file(TCCState *s1, const char *filename)
|
||||
phdr = tcc_mallocz(phnum * sizeof(ElfW(Phdr)));
|
||||
|
||||
/* compute section to program header mapping */
|
||||
file_offset = layout_sections(s1, phdr, phnum, interp, &dyninf, sec_order);
|
||||
file_offset = layout_sections(s1, phdr, phnum, interp, strsec, &dyninf,
|
||||
sec_order);
|
||||
|
||||
/* Fill remaining program header and finalize relocation related to dynamic
|
||||
linking. */
|
||||
|
Loading…
Reference in New Issue
Block a user