[issue23340] armv7l C++ exceptions issue

2015-01-29 Thread Alex Potapenko
Alex Potapenko added the comment: Thank you for giving me a hint, Eric! Even though you weren't 100% right, your got me thinking in the right direction, and I found out in the end that I have to explicitly link python with libgcc_s on build time. Now everything works fine. This looks like a

[issue23340] armv7l C++ exceptions issue

2015-01-28 Thread Eric V. Smith
Eric V. Smith added the comment: I agree with David that this isn't the right venue. That said, the likely problem is that Python's main() is written in C, not C++, so some needed runtime support for exceptions is not getting initialized. -- nosy: +eric.smith resolution: - not a bug

[issue23340] armv7l C++ exceptions issue

2015-01-28 Thread Alex Potapenko
New submission from Alex Potapenko: I run Python on an arm-brcm-linux-uclibcgnueabi router. Python was cross-compiled using hndtools-arm-linux-2.6.36-uclibc-4.5.3 toolchain. While trying to use deluge, I realised that there's something wrong with handling C++ exceptions in C++ extension

[issue23340] armv7l C++ exceptions issue

2015-01-28 Thread R. David Murray
R. David Murray added the comment: For a problem like this you should post to the python-list mailing list. In addition to the bug tracker not being a place to get help, you are actually more likely to find people who can help you on python-list. We don't actually deal with C++ extensions

[issue23340] armv7l C++ exceptions issue

2015-01-28 Thread Alex Potapenko
Alex Potapenko added the comment: Thank you for your reply, David! I will come back and reopen if I do identify a python bug. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23340 ___