patches/newlib/1.19.0/100-fix-unaligned-access-memcpy-m68k.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Dec 12 21:41:16 2011 +0200 (2011-12-12)
branch1.13
changeset 2845 0dc9d4931246
parent 1902 faade25219ed
permissions -rw-r--r--
scripts: unset CONFIG_SITE

Some distributions (eg. openSUSE 12.1) systematically export
the CONFIG_SITE environment variable to point to a custom
script setting misc paths for ./configure.

This can, and does, break when cross-compiling for architectures
that are not supported by this script.

The simple workaround is to unset this variable.
NB: buildroot has a similar fix:
http://git.buildroot.org/buildroot/commit/?id=12c9f7dd6dee9c6029b4f9a12d6aac1516911ab4

Reported-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 21f4f28e60ec0342133086c9a51e7f0e5b181fb8)
     1 The m68k mcpu processor does not like unaligned access
     2 
     3 Disable at least mcpu32, m68010 and m68020. These processors certainly
     4 do not like unaligned accesses.
     5 
     6 Signed-off-by: Remy Bohmer <linux@bohmer.net>
     7 [yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0]
     8 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     9 ---
    10  newlib/libc/machine/m68k/memcpy.S |    2 +-
    11  1 file changed, 1 insertion(+), 1 deletion(-)
    12 
    13 Index: newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S
    14 ===================================================================
    15 --- newlib-1.19.0.orig/newlib/libc/machine/m68k/memcpy.S
    16 +++ newlib-1.19.0/newlib/libc/machine/m68k/memcpy.S
    17 @@ -15,7 +15,7 @@
    18  
    19  #include "m68kasm.h"
    20  
    21 -#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    22 +#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    23  # define MISALIGNED_OK 1
    24  #else
    25  # define MISALIGNED_OK 0