1
1

configury: auto-detect armhf and armel architectures on Debian

Thanks Alastair McKinstry for the patch

Fixes open-mpi/ompi#2514

Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
Этот коммит содержится в:
Gilles Gouaillardet 2016-12-06 09:05:44 +09:00
родитель 596613c0aa
Коммит 299a6f8d7c

Просмотреть файл

@ -1033,7 +1033,7 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)' OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)'
;; ;;
armv7*) armv7*|arm-*-linux-gnueabihf)
opal_cv_asm_arch="ARM" opal_cv_asm_arch="ARM"
OPAL_ASM_SUPPORT_64BIT=1 OPAL_ASM_SUPPORT_64BIT=1
OPAL_ASM_ARM_VERSION=7 OPAL_ASM_ARM_VERSION=7
@ -1052,7 +1052,7 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)' OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)'
;; ;;
armv5*linux*|armv4*linux*) armv5*linux*|armv4*linux*|arm-*-linux-gnueabi)
# uses Linux kernel helpers for some atomic operations # uses Linux kernel helpers for some atomic operations
opal_cv_asm_arch="ARM" opal_cv_asm_arch="ARM"
OPAL_ASM_SUPPORT_64BIT=0 OPAL_ASM_SUPPORT_64BIT=0