"K Stol" <[EMAIL PROTECTED]> writes: > > What's the secret to making parrot recognize > > a new PMC? I've got my .pmc file but I'm > > not sure what to do next. The article about > > making PMC's on perl.com is WAY out of date. > > > > 1. create your PMC class, add it to the classes/ directory > 2. add the file to MANIFEST in the Parrot root dir. > : classes/pythonclass.pmc [] > ( I don't know what the "[]" mean)
The "[]" have something todo with RPM generation, previously known as MANIFEST.detailed see http://groups.google.com/groups?selm=Pine.SOL.4.53.0305010847240.27446%40maxwell.phys.lafayette.edu 2a. make realclean The Makefiles don't contain all dependencies, and you can get funny problems when you dont make realclean here. This is a known problem. > 3. ./Configure.pl (which uses MANIFEST) > 4. make bye boe