From: Matthew McClintock Date: Thu, 29 Sep 2011 20:12:53 +0000 (-0400) Subject: Add powerpc64 host_cpu to configure.ac X-Git-Tag: v0.16~4 X-Git-Url: https://git.liburcu.org/?p=ust.git;a=commitdiff_plain;h=f6572ddc976898c4ce77c484a3287a0cc7b57800 Add powerpc64 host_cpu to configure.ac Seems like autoconf uses powerpc64 as our host cpu type, this patch is to fix build issues in openembedded/yocto targets Signed-off-by: Matthew McClintock Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index bd27236..8cef0cd 100644 --- a/configure.ac +++ b/configure.ac @@ -111,6 +111,7 @@ changequote([,])dnl x86_64) LIBFORMAT="elf64-x86-64" ;; powerpc) LIBFORMAT="elf32-powerpc" ;; ppc64) LIBFORMAT="elf64-powerpc" ;; + powerpc64) LIBFORMAT="elf64-powerpc" ;; s390) LIBFORMAT="elf32-s390" ;; s390x) LIBFORMAT="elf64-s390" ;; armv5) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;