2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

check __aarch64__ for ARM

Macro __arm__ is not set on Aarch64 architecture
This commit is contained in:
Oliver Kowalke
2015-02-24 08:20:38 +01:00
committed by Vladimir Prus
parent 25899a8073
commit 4a3a99bf30

View File

@@ -375,7 +375,8 @@
#define OSPLAT "OSPLAT=MIPS"
#endif
#ifdef __arm__
#if defined( __arm__ ) || \
defined( __aarch64__ )
#define OSPLAT "OSPLAT=ARM"
#endif