This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Opilki_Inside
Recipients Opilki_Inside
Date 2012-09-26.00:22:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348618955.55.0.49066087682.issue16050@psf.upfronthosting.co.za>
In-reply-to
Content
ppc_405, Linux 2.4, GCC 3.3.1

Python crashes on attempt to pass python callback function to custom C++ library under PowerPC 405. This happens because some versions of GCC (I guess below 4.1) doesn't raise __NO_FPRS__ flag if hard-floats is not supported, instead they use _SOFT_FLOAT. So we need to change

#ifndef __NO_FPRS__
to
#if (!defined(__NO_FPRS__) && !defined(_SOFT_FLOAT))
History
Date User Action Args
2012-09-26 00:22:35Opilki_Insidesetrecipients: + Opilki_Inside
2012-09-26 00:22:35Opilki_Insidesetmessageid: <1348618955.55.0.49066087682.issue16050@psf.upfronthosting.co.za>
2012-09-26 00:22:14Opilki_Insidelinkissue16050 messages
2012-09-26 00:22:13Opilki_Insidecreate