mirror of
https://gitlab.com/rnger/amath
synced 2026-01-12 08:06:49 +00:00
ARM support
This commit is contained in:
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user