This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Should gcc/mkmap-symver.awk really use "nm"?
- From: Richard Henderson <rth at redhat dot com>
- To: Gcc <gcc at gcc dot gnu dot org>
- Date: Mon, 18 Mar 2002 19:21:51 -0800
- Subject: Re: Should gcc/mkmap-symver.awk really use "nm"?
- References: <20020318223213.GA4774@j-son.org>
On Mon, Mar 18, 2002 at 11:32:14PM +0100, Christian Jönsson wrote:
> I'm trying to understand what the file gcc/mkmap-symver.awk does....
> state == "nm" && ($1 == "U" || $2 == "U") {
> next;
> }
>
> Now, are these lines referring to "nm" as the binutils nm?
No, that's the state-label of a two state automata. One
state is labeled "nm", the other "ver". See the BEGIN node.
r~