tags:

views:

49

answers:

2

Hello

What was the munch library (or program?) from cfront package? What is was used for ?

Thanks

+2  A: 

Munch was used to scan the nm output and look for static constructors/destructors.

See the code (with comments) at SoftwarePreservation.com.

tvanfosson
Thanks for the link
AProgrammer
the link is visited, but i did not get the functionality of munch after looking at code.
osgx
I suspect this is what `collect2` does for GCC.
Johannes Schaub - litb
A: 

Apparently it extracts initializers and finalizers.

T.J. Crowder