Refs #355. Fixed ARM detection bug.

This commit is contained in:
Zhang Xianyi 2014-03-22 15:08:18 +08:00
parent 1140c489c9
commit 4d42368214
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ ARCH_IA64
BINARY_64
#endif
#if defined(__ARM_ARCH) || defined(__ARM_ARCH_7A__)
#if defined(__ARM_ARCH) || defined(__ARM_ARCH_7A__) || defined(__arm__)
ARCH_ARM
#endif