Revision: 913 Author: tim.bunce Date: Mon Nov 16 06:27:29 2009 Log: Tweaked slowops.h generation. Added MANIFEST.SKIP.
http://code.google.com/p/perl-devel-nytprof/source/detail?r=913 Added: /trunk/MANIFEST.SKIP Modified: /trunk/Makefile.PL ======================================= --- /dev/null +++ /trunk/MANIFEST.SKIP Mon Nov 16 06:27:29 2009 @@ -0,0 +1,8 @@ +\B\.svn\b +^MANIFEST\. +^Makefile$ +\.DS_Store$ +~$ +^blib/ +^info/ +^Devel-NYTProf-\d ======================================= --- /trunk/Makefile.PL Sat Nov 14 13:27:29 2009 +++ /trunk/Makefile.PL Mon Nov 16 06:27:29 2009 @@ -195,12 +195,13 @@ # not fork because it doesn't make much sense # not substcont yet - needs more work XXX slowops:: - perl -MOpcode=opset_to_ops,opset \ - -e 'require v5.10.0; # only regenerate with 5.10+ to get all ops' \ + $(NOECHO) $(PERL) -e 'require v5.10.0; # only regenerate with 5.10+ to get all ops' + $(PERL) -MOpcode=opset_to_ops,opset \ -e 'print "/* generated by Makefile.PL for perl $$] */\n";' \ -e 'my @ops = opset_to_ops(opset(":base_io",":filesys_read",":filesys_write",":filesys_open",":sys_db",":subprocess",":others",qw(match subst substcont qr regcomp prtf crypt chdir flock ioctl socket getpeername ssockopt bind connect listen accept shutdown gsockopt getsockname sleep sort pack unpack dofile syscall dump chroot dbmopen dbmclose lock sselect select), qw(!fileno !require !fork)));' \ -e 'print "PL_ppaddr[OP_\U$$_\E] = pp_slowop_profiler;\n" for sort @ops;' \ > slowops.h + $(PERL) -e "warn qq{NOTE: slowops.h will need manual editing to restore lost #ifdef's around some opcodes!\n}"; svnmanifest:: svn list -R ....@head | sort | grep -v '/$$' > MANIFEST -- You've received this message because you are subscribed to the Devel::NYTProf Development User group. Group hosted at: http://groups.google.com/group/develnytprof-dev Project hosted at: http://perl-devel-nytprof.googlecode.com CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf To post, email: [email protected] To unsubscribe, email: [email protected]
