From 7af249f622357914ca9789391d4d4177846f8e01 Mon Sep 17 00:00:00 2001 From: Matthew McClintock Date: Thu, 29 Sep 2011 16:15:08 -0400 Subject: [PATCH] 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 --- configure.ac | 1 + 1 file changed, 1 insertion(+) 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 ;; -- 2.34.1