How do you profile your apps under windows?

2013-08-09 Thread Alexandr Druzhinin
-profile switch doesn't work for me (nothing happens), so I'm curious how to profile?

Re: How do you profile your apps under windows?

2013-08-09 Thread H. S. Teoh
On Fri, Aug 09, 2013 at 11:39:41PM +0700, Alexandr Druzhinin wrote: > -profile switch doesn't work for me (nothing happens), so I'm > curious how to profile? You've to run your program first. It will create a bunch of extra files in your current working directory that contains the profile results.

Re: How do you profile your apps under windows?

2013-08-09 Thread Dmitry Olshansky
09-Aug-2013 20:39, Alexandr Druzhinin пишет: -profile switch doesn't work for me (nothing happens), so I'm curious how to profile? My take is to compile with -g and use say AMD CodeAnalyst (or Intel's analog). Works quite well even though all symbols are mangled. With -profile the app usuall

Re: How do you profile your apps under windows?

2013-08-09 Thread Gary Willoughby
On Friday, 9 August 2013 at 16:39:41 UTC, Alexandr Druzhinin wrote: -profile switch doesn't work for me (nothing happens), so I'm curious how to profile? I had the same problem on Linux where -profile didn't seem to produce anything. I had a program which ran an infinite loop running as a dae

Re: How do you profile your apps under windows?

2013-08-09 Thread Richard Webb
The Very Sleepy profiler works ok (if you run the apps through cv2pdb to get the debug symbols in the right format at least)

Re: How do you profile your apps under windows?

2013-08-11 Thread Alexandr Druzhinin
10.08.2013 00:59, H. S. Teoh пишет: On Fri, Aug 09, 2013 at 11:39:41PM +0700, Alexandr Druzhinin wrote: -profile switch doesn't work for me (nothing happens), so I'm curious how to profile? You've to run your program first. It will create a bunch of extra files in your current working director

Re: How do you profile your apps under windows?

2013-08-11 Thread Alexandr Druzhinin
10.08.2013 01:30, Gary Willoughby пишет: On Friday, 9 August 2013 at 16:39:41 UTC, Alexandr Druzhinin wrote: -profile switch doesn't work for me (nothing happens), so I'm curious how to profile? I had the same problem on Linux where -profile didn't seem to produce anything. I had a program whi