in reply to help on compilation profiling

Hi,

You can see exactly how long the certain parts of compilation (BEGIN blocks, use statements) are taking using Devel::DProf. Just run using:

perl -d:DProf your_program.pl

..it will put info into a file "tmon.out". Then:

dprofpp -S (or -E or -I depending on what/how much you want to see)

at the command line (in the same directory you're running in) will give you lots of info.

Replies are listed 'Best First'.
Re^2: help on compilation profiling
by karthikpa (Novice) on Sep 19, 2007 at 07:10 UTC
    thanks! I'll try those out and get back to you with how it goes.