You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered the same problem too! Apparently numpy does not follow it's
documentation. Grep-ing the numpy headers shows that NPY_*_ENDIAN are actually
used using #ifdefs.
However note: The patch "0001-fix-for-undef-d-NPY_-BIG-LITTLE-_ENDIAN.patch"
that is supplied here will probably fail to compile on big-endian machines.
Particularly, the line
#elif NPY_BIG_ENDIAN
should probably read
#elif defined(NPY_BIG_ENDIAN)
I have attached another improved patch.
Original comment by p...@delley.net on 20 Sep 2010 at 10:19
Original issue reported on code.google.com by
nev...@gmail.com
on 15 Sep 2010 at 11:39Attachments:
The text was updated successfully, but these errors were encountered: