ARM support

This commit is contained in:
Carsten Larsen 2017-01-21 20:21:18 +01:00
parent 957355545e
commit 4aefa785ad
2 changed files with 5 additions and 2 deletions

View File

@ -76,6 +76,9 @@
#if defined(__x86_64__)
# define TXTCPU "amd64"
#endif
#if defined(__arm__) || defined(_M_ARM)
# define TXTCPU "ARM"
#endif
#ifndef TXTCPU
#error what cpu is this ?!
//#define TXTCPU EMPTYSTRING

View File

@ -80,8 +80,8 @@ int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int
#define __IEEE_BIG_ENDIAN
#endif
#if defined(ARMCPU) || defined(__arm__)
#define __IEEE_BIG_ENDIAN
#if defined(ARMCPU) || defined(__arm__) || defined(_M_ARM)
#define __IEEE_LITTLE_ENDIAN
#endif
#ifndef __IEEE_BIG_ENDIAN