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 mark.dickinson
Recipients MrJean1, loewis, mark.dickinson, skip.montanaro, terry.reedy
Date 2008-07-08.21:05:28
SpamBayes Score 0.0015812503
Marked as misclassified No
Message-id <1215551132.15.0.347498268368.issue3167@psf.upfronthosting.co.za>
In-reply-to
Content
I'm pretty much out of ideas here.  Skip, if you have any time to figure 
out where the math.log call is going wrong, I'd appreciate it.  On Jean's 
machine, the problem was that the call log(-inf) to the C library's log 
function was returning -inf instead of the expected nan.

The actual function call takes place in math_1, in the line 
"r = (*func)(x)" (line 178 of Modules/mathmodule.c in the current trunk, 
r64812).  A couple of printf calls would show the inputs and outputs to 
that function.

Is /usr/bin/ccs/ld Sun's own linker?  If so, why doesn't it accept the -
xlibmieee option?  (Or maybe it does, in which case the question is why 
isn't gcc passing that option to ld properly.)
History
Date User Action Args
2008-07-08 21:05:32mark.dickinsonsetspambayes_score: 0.00158125 -> 0.0015812503
recipients: + mark.dickinson, loewis, skip.montanaro, terry.reedy, MrJean1
2008-07-08 21:05:32mark.dickinsonsetspambayes_score: 0.00158125 -> 0.00158125
messageid: <1215551132.15.0.347498268368.issue3167@psf.upfronthosting.co.za>
2008-07-08 21:05:30mark.dickinsonlinkissue3167 messages
2008-07-08 21:05:29mark.dickinsoncreate