give crunchide a C label name with -k, since crunchgen really doesn't

want to have to care about the object format in use, and C label prefix
is object format dependent.
This commit is contained in:
cgd 1997-01-23 05:07:22 +00:00
parent 9e2f98f172
commit 20741c52e9
2 changed files with 2 additions and 2 deletions

View File

@ -807,7 +807,7 @@ void prog_makefile_rules(FILE *outmk, prog_t *p)
p->name, p->name, p->ident); p->name, p->name, p->ident);
fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)\n", fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)\n",
p->name, p->name, p->ident); p->name, p->name, p->ident);
fprintf(outmk, "\tcrunchide -k __crunched_%s_stub %s.lo\n", fprintf(outmk, "\tcrunchide -k _crunched_%s_stub %s.lo\n",
p->ident, p->name); p->ident, p->name);
} }

View File

@ -807,7 +807,7 @@ void prog_makefile_rules(FILE *outmk, prog_t *p)
p->name, p->name, p->ident); p->name, p->name, p->ident);
fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)\n", fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)\n",
p->name, p->name, p->ident); p->name, p->name, p->ident);
fprintf(outmk, "\tcrunchide -k __crunched_%s_stub %s.lo\n", fprintf(outmk, "\tcrunchide -k _crunched_%s_stub %s.lo\n",
p->ident, p->name); p->ident, p->name);
} }