Assume ELF-style symbol names now.

Submitted by:	jhay
This commit is contained in:
Jordan K. Hubbard 1998-09-14 11:33:38 +00:00
parent 1025205fa2
commit 6cd35234a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39171

View file

@ -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);