add support for building on windows/arm64 target
This commit is contained in:
parent
04255be948
commit
cdb5d2737e
|
@ -120,7 +120,7 @@ static inline int blas_quickdivide(blasint x, blasint y){
|
||||||
.text ;
|
.text ;
|
||||||
.p2align 2 ;
|
.p2align 2 ;
|
||||||
.global REALNAME ;
|
.global REALNAME ;
|
||||||
#ifndef __APPLE__
|
#if !defined(__APPLE__) && !defined(_WIN32)
|
||||||
.type REALNAME, %function ;
|
.type REALNAME, %function ;
|
||||||
#endif
|
#endif
|
||||||
REALNAME:
|
REALNAME:
|
||||||
|
|
4
ctest.c
4
ctest.c
|
@ -84,7 +84,7 @@ OS_AIX
|
||||||
OS_OSF
|
OS_OSF
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__WIN32) || defined(__WIN64) || defined(__WINNT)
|
#if defined(__WIN32) || defined(__WIN64) || defined(_WIN32) || defined(_WIN64) || defined(__WINNT)
|
||||||
OS_WINNT
|
OS_WINNT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ ARCH_SPARC
|
||||||
ARCH_IA64
|
ARCH_IA64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__LP64) || defined(__LP64__) || defined(__ptr64) || defined(__x86_64__) || defined(__amd64__) || defined(__64BIT__)
|
#if defined(__LP64) || defined(__LP64__) || defined(__ptr64) || defined(__x86_64__) || defined(__amd64__) || defined(__64BIT__) || defined(__aarch64__)
|
||||||
BINARY_64
|
BINARY_64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue