Skip to content

Commit 299a6f8

Browse files
committed
configury: auto-detect armhf and armel architectures on Debian
Thanks Alastair McKinstry for the patch Fixes #2514 Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent 596613c commit 299a6f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/opal_config_asm.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,7 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
10331033
OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)'
10341034
;;
10351035
1036-
armv7*)
1036+
armv7*|arm-*-linux-gnueabihf)
10371037
opal_cv_asm_arch="ARM"
10381038
OPAL_ASM_SUPPORT_64BIT=1
10391039
OPAL_ASM_ARM_VERSION=7
@@ -1052,7 +1052,7 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
10521052
OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)'
10531053
;;
10541054
1055-
armv5*linux*|armv4*linux*)
1055+
armv5*linux*|armv4*linux*|arm-*-linux-gnueabi)
10561056
# uses Linux kernel helpers for some atomic operations
10571057
opal_cv_asm_arch="ARM"
10581058
OPAL_ASM_SUPPORT_64BIT=0

0 commit comments

Comments
 (0)