#12423: Numpy wrongly assume that any non-i386 OS X system is PowerPC
------------------------+---------------------------------------------------
Reporter: jdemeyer | Owner: tbd
Type: defect | Status: new
Priority: major | Milestone: sage-5.0
Component: packages | Keywords:
Work_issues: | Upstream: Not yet reported upstream; Will do
shortly.
Reviewer: | Author:
Merged: | Dependencies:
------------------------+---------------------------------------------------
Apparently Numpy forgot about the existence of "x86_64" systems:
{{{
Python 2.7.2 (default, Feb 3 2012, 15:29:15)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from distutils.util import get_platform
>>> get_platform()
'macosx-10.6-x86_64'
}}}
The bug is in `src/numpy/distutils/system_info.py`:
{{{
if sys.platform=='darwin' and not os.environ.get('ATLAS',None):
args = []
link_args = []
if get_platform()[-4:] == 'i386':
intel = 1
else:
intel = 0
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/12423>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
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.