mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
01ef3dd9c5
This adds complete aarch64 target support including bigendian subarch. Some of the long double math functions are known to be broken otherwise interfaces should be fully functional, but at this point consider this port experimental. Initial work on this port was done by Sireesh Tripurari and Kevin Bortis.
6 lines
102 B
C
6 lines
102 B
C
#if __AARCH64EB__
|
|
#define __BYTE_ORDER __BIG_ENDIAN
|
|
#else
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
#endif
|