Re: python + gcov

2007-08-31 Thread labrach
> I always bit the bullet and finally just did that. and here the steps to follow ... http://plexity.blogspot.com/2006/02/profiling-python-extensions.html laurent -- http://mail.python.org/mailman/listinfo/python-list

Re: python + gcov

2007-08-30 Thread Gerhard Häring
[EMAIL PROTECTED] wrote: > [...] Do I need to make a static extension of my imported module to profile > it ? I always bit the bullet and finally just did that. -- Gerhard -- http://mail.python.org/mailman/listinfo/python-list

Re: python + gcov

2007-08-30 Thread labrach
Some precisions : I've forced the configuration options with the followings flags in the Makefile.pre : OPT='-Wall -fprofile-arcs -ftest-coverage -pg' BASECFLAGS='-Wall -fprofile-arcs -ftest-coverage -pg' LDFLAGS='-Wall -fprofile-arcs -ftest-coverage -pg' XLINKER='-Wall -fprofile-arcs -ftes