STINNER Victor <victor.stin...@haypocalc.com> added the comment:

test_gdb of py3k now pass with ./configure --with-pydebug (no optimization <=> 
-O0), but fail (Unable to read information on python frame) with ./configure 
(-O3). The test does also fail with -O1.

Recompile only ceval.c with -O0 is enough to fix this issue:
----
$ rm ./Python/ceval.o
$ vim Makefile
# replace -O3 by -O0
$ make && ./python Lib/test/regrtest.py -v test_gdb
# success
----

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8482>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to