On Fri, Jun 29, 2007 at 11:55:28AM -0500, Patrick R. Michaud wrote: > I just spent about an hour trying to figure out how the files > in runtime/parrot/library/ are automatically compiled into .pbc files > when Parrot is built. It turns out that the list of files > is computed from the MANIFEST, and I was searching through > files in the config/ subdirectory (where most other configuration-like > items tend to be placed).
Never mind, I finally figured it out. It's in config/gen/makefiles/root.in . I was doing "ack HLLCompiler" in the config directory (and other directories) to try to find the HLLCompiler.pbc target, but didn't realize that ack doesn't search "root.in" by default. I guess this is one of those 1% cases where I should've used "grep -r" instead, or learned about "ack -a". Pm