Subject: Re: crunchgen changes to use symbol renaming instead of symbol hiding
To: Simon Burge <simonb@wasabisystems.com>
From: enami tsugutomo <enami@sm.sony.co.jp>
List: tech-toolchain
Date: 01/23/2003 12:33:38
Simon Burge <simonb@wasabisystems.com> writes:

> +#ifdef RENAME_SYMS
> +    fprintf(outmk, "\t${NM} -ng %s.cro | grep -wv U | ", p->name);
> +    fprintf(outmk, "egrep -vw _crunched_%s_stub | ", p->ident);
> +    for (lst = p->keepsymbols; lst != NULL; lst = lst->next)
> +	fprintf(outmk, "egrep -vw %s | ", lst->str);

I wonder how many number of egreps will run.  Is it known to fit
normal limit?

enami.