From 9c39aa1b9f8fa1710007032571b89d8fcf10f13e Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Wed, 3 Mar 2021 02:52:23 +0100 Subject: [PATCH] Add support for m68k --- common/arch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/arch.h b/common/arch.h index 8c2ac1a4..7cc2ac09 100644 --- a/common/arch.h +++ b/common/arch.h @@ -64,7 +64,7 @@ typedef int bool_t; #if !(defined(L_ENDIAN) || defined(B_ENDIAN)) #if defined(__sparc__) || \ - defined(__hppa__) || \ + defined(__hppa__) || defined (__m68k__) || \ (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ (defined(__ppc__) && defined(__BIG_ENDIAN__)) #define B_ENDIAN @@ -77,7 +77,7 @@ typedef int bool_t; /* check if we need to align data */ #if !(defined(NEED_ALIGN) || defined(NO_NEED_ALIGN)) #if defined(__sparc__) || defined(__alpha__) || defined(__hppa__) || \ - defined(__AIX__) || defined(__mips__) || \ + defined(__AIX__) || defined(__m68k__) || defined(__mips__) || \ defined(__ia64__) || defined(__arm__) || \ (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ (defined(__ppc__) && defined(__BIG_ENDIAN__))