#4148: [with spkg, needs work] Upgrade to givaro-3.2.13rc1
---------------------+------------------------------------------------------
Reporter: cpernet | Owner: cpernet
Type: defect | Status: new
Priority: major | Milestone: sage-3.1.3
Component: givaro | Resolution:
Keywords: |
---------------------+------------------------------------------------------
Comment (by mabshoff):
Ok, the problem boils down to byte order detection being broken on OSX it
seems:
{{{
#if __BYTE_ORDER == __BIG_ENDIAN
uint64 negative:1;
uint64 exponent:11;
uint64 mantissa:52;
#endif /* Big endian. */
#if __BYTE_ORDER == __LITTLE_ENDIAN
uint64 mantissa:52;
uint64 exponent:11;
uint64 negative:1;
#endif /* Little endian. */
}}}
Cheers,
Michael
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4148#comment:6>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---