Re: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread Corinna Vinschen
On Jun 17 12:52, Larry Hall (Cygwin) wrote: On 6/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being spent. I am using gcc and trying to compile and link with -g and -pg. i.e. for a trivial test : $ cat helloworld.c /* Hello World

Re: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread Corinna Vinschen
On Jun 18 12:11, Corinna Vinschen wrote: On Jun 17 12:52, Larry Hall (Cygwin) wrote: On 6/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being spent. I am using gcc and trying to compile and link with -g and -pg. i.e. for a

RE: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread J . B . W . Webber
-Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof On Jun 18 12:11, Corinna Vinschen wrote: On Jun 17 12:52, Larry Hall (Cygwin) wrote: On 6/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being

Re: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread Ariel Burbaickij
Uhm, may I ask for some pointers to Altera/Stawberry cygwins -- what is it? On Tue, Jun 18, 2013 at 4:06 PM, J.B.W.Webber j.b.w.web...@kent.ac.uk wrote: -Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof On Jun 18 12:11, Corinna Vinschen wrote

Re: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread Dan Kegel
Ariel Burbaickij wrote: Uhm, may I ask for some pointers to Altera/Stawberry cygwins -- what is it? Does it have something to do with http://en.wikipedia.org/wiki/Strawberry_Perl ? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/

RE: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread J . B . W . Webber
-Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof Ariel Burbaickij wrote: Uhm, may I ask for some pointers to Altera/Stawberry cygwins -- what is it? Does it have something to do with http://en.wikipedia.org/wiki/Strawberry_Perl ? Hi Ariel, Altera

Re: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread Corinna Vinschen
On Jun 18 16:28, J.B.W.Webber wrote: -Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof Ariel Burbaickij wrote: Uhm, may I ask for some pointers to Altera/Stawberry cygwins -- what is it? Does it have something to do with http

RE: What is a good profiling tool ? - problem with gprof

2013-06-18 Thread J . B . W . Webber
-Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof On Jun 18 16:28, J.B.W.Webber wrote: -Original Message- Subject: Re: What is a good profiling tool ? - problem with gprof Ariel Burbaickij wrote: Uhm, may I ask for some pointers

Re: What is a good profiling tool ? - problem with gprof

2013-06-17 Thread Larry Hall (Cygwin)
On 6/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being spent. I am using gcc and trying to compile and link with -g and -pg. i.e. for a trivial test : $ cat helloworld.c /* Hello World program */ #includestdio.h main() {

Re: What is a good profiling tool ? - problem with gprof

2013-06-17 Thread Tim Prince
On 06/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being spent. I am using gcc and trying to compile and link with -g and -pg. i.e. for a trivial test : $ cat helloworld.c /* Hello World program */ #includestdio.h main() {

RE: What is a good profiling tool ? - problem with gprof

2013-06-17 Thread J . B . W . Webber
Subject: Re: What is a good profiling tool ? - problem with gprof On 06/17/2013 12:19 PM, J.B.W.Webber wrote: Hi, I am trying to find in which function call the most time is being spent. I am using gcc and trying to compile and link with -g and -pg. i.e. for a trivial test : $ cat