Hi francis, pyinstaller does not do any compilation of C code. It just collects python modules and and C-extensions.
Not sure how gcov works but you would have to compile your C-extension yourself with propper CFLAGS. Then add the extension to your PYTHONPATH and pyinstaller will just collect it. francis píše v Ne 28. 10. 2012 v 06:50 -0700: > Hi all, > > I would like to have line and branch coverage of a Python C-extension > by > using gcc-coverage (gcov). AFAIN to be able to use gcov for that, the > extension > module has to be compiled statically: means in that case the > interpreter, the > tests (written in python with unittest) and the C-extension itself. I > wonder if that > can be achieved with pyinstaller. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
