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 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

python + gcov

2007-08-29 Thread labrach
Hi I want to profile (and analyse coverage) some c++ code imported as a python module I've compiled python (2.4.2) with gcc 3.4.3 and flags=-Wall -fprofile- arcs -ftest-coverage in order to use gcov. However, the python binary does not generate any coverage file (such than *.gcno, gcda) during