[NumPy-Tickets] [NumPy] #1694: Adding support to an ARM processor
NumPy Trac
numpy-tickets@scipy....
Wed Mar 9 08:57:27 CST 2011
#1694: Adding support to an ARM processor
-----------------------------+----------------------------------------------
Reporter: Snark | Owner: cdavid
Type: defect | Status: new
Priority: normal | Milestone: 1.6.0
Component: numpy.distutils | Version: 1.5.0
Keywords: |
-----------------------------+----------------------------------------------
Comment(by rgommers):
Is your endian.h in a non-standard place? It is looked for by
numpy/core/setup.py (line 276). Then, in case it is not found, this should
do the job:
{{{
#elif defined(__arm__) && defined(__ARMEL__)
#define NPY_CPU_ARMEL
#elif defined(__arm__) && defined(__ARMEB__)
#define NPY_CPU_ARMEB
}}}
Can you check which of the above is not defined? Is {{{__BIG_ENDIAN}}}
defined, would that help? It would be good if we could make things work
out of the box for you.
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1694#comment:4>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list