in reply to Re^2: why the exe runs so slow compiled by pp in the first time
in thread why the exe runs so slow compiled by pp in the first time

no, pp just 'packs perl' into a self extracting executable. definitely has it's uses, but it does not turn your code into binary.

run procmon or something similar to find the path that your script.exe is running from and you can see all of your code and any included modules

  • Comment on Re^3: why the exe runs so slow compiled by pp in the first time

Replies are listed 'Best First'.
Re^4: why the exe runs so slow compiled by pp in the first time
by Achilles_Sea (Novice) on Aug 24, 2011 at 10:40 UTC

    I used the procmon to find out what happened in the first run. it turns out to be what you've said, the executable really unpacked many .pm modules into the temporary directories.

    thanks for help