Message196522
| Author |
skrah |
| Recipients |
amaury.forgeotdarc, mmokrejs, neologix, sjt, skrah, tim.peters, vstinner |
| Date |
2013年08月30日.10:51:20 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1377859880.95.0.282028990334.issue18843@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I uderstand that you are building Python using "emerge". I would try to get a release from python.org, do a normal build ...
make distclean
./configure --prefix=/tmp --with-pydebug --with-valgrind
make
make install
...
then install matplotlib using
/tmp/bin/python setup.py
...
then run (assuming you are in the build directory):
valgrind --suppressions=Misc/valgrind-python.supp /tmp/bin/python your_program |
|