mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
Assume ELF-style symbol names now.
Submitted by: jhay
This commit is contained in:
parent
1025205fa2
commit
6cd35234a0
1 changed files with 1 additions and 1 deletions
|
|
@ -797,7 +797,7 @@ void prog_makefile_rules(FILE *outmk, prog_t *p)
|
|||
p->name, p->name, p->ident);
|
||||
fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)\n",
|
||||
p->name, p->name, p->ident);
|
||||
fprintf(outmk, "\tcrunchide -k __crunched_%s_stub ", p->ident);
|
||||
fprintf(outmk, "\tcrunchide -k _crunched_%s_stub ", p->ident);
|
||||
for(lst = p->keeplist; lst != NULL; lst = lst->next)
|
||||
fprintf(outmk, "-k _%s ", lst->str);
|
||||
fprintf(outmk, "%s.lo\n", p->name);
|
||||
|
|
|
|||
Loading…
Reference in a new issue