linux@1902: The m68k mcpu processor does not like unaligned access linux@1902: linux@1902: Disable at least mcpu32, m68010 and m68020. These processors certainly linux@1902: do not like unaligned accesses. linux@1902: linux@1902: Signed-off-by: Remy Bohmer linux@1902: --- linux@1902: newlib/libc/machine/m68k/memcpy.S | 2 +- linux@1902: 1 file changed, 1 insertion(+), 1 deletion(-) linux@1902: linux@1902: Index: newlib-1.18.0/newlib/libc/machine/m68k/memcpy.S linux@1902: =================================================================== linux@1902: --- newlib-1.18.0.orig/newlib/libc/machine/m68k/memcpy.S linux@1902: +++ newlib-1.18.0/newlib/libc/machine/m68k/memcpy.S linux@1902: @@ -15,7 +15,7 @@ linux@1902: linux@1902: #include "m68kasm.h" linux@1902: linux@1902: -#if defined (__mcoldfire__) || defined (__mcpu32__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__) linux@1902: +#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__) linux@1902: # define MISALIGNED_OK 1 linux@1902: #else linux@1902: # define MISALIGNED_OK 0