From: Matthew McClintock Date: Thu, 29 Sep 2011 20:15:08 +0000 (-0400) Subject: Add powerpc64 host_cpu to configure.ac X-Git-Tag: v1.9.1~170 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=7af249f622357914ca9789391d4d4177846f8e01;p=lttng-ust.git 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 a8ec60a1..3018d8d9 100644 --- a/configure.ac +++ b/configure.ac @@ -101,6 +101,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"; NO_UNALIGNED_ACCESS=1 ;; s390x) LIBFORMAT="elf64-s390"; NO_UNALIGNED_ACCESS=1 ;; armv5) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;