patches/newlib/1.20.0/100-fix-unaligned-access-memcpy-m68k.patch
author David Holsgrove <david.holsgrove@xilinx.com>
Thu Oct 04 15:59:31 2012 +1000 (2012-10-04)
changeset 3073 a6981147ccc0
permissions -rw-r--r--
scripts/gcc: Canadian Cross skip -print-multi-lib log output

Attempting to ${CT_TARGET}-gcc -print-multi-lib will fail

In do_cc_core_backend, for the final compiler in a canadian cross
baremetal, warn that multi-libs cannot be determined

In do_cc_backend, for either final compiler for a canadian cross,
warn that multi-libs cannot be determined

(Plus fixed CT_PREFIX_DIR in do_cc_backend to be ${prefix})

Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com>
Message-Id: <CAM=EW8aQDoNx-CkJHjXBoDP4iTDJ8z5hh3=KhO5UTU6rp3Pj=w@mail.gmail.com>
Patchwork-Id: 189053
     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 [austinpmorton@gmail.com: update for 1.20.0 from 1.19.0]
    10 Signed-off-by: Austin Morton <austinpmorton@gmail.com>
    11 ---
    12  newlib/libc/machine/m68k/memcpy.S |    2 +-
    13  1 file changed, 1 insertion(+), 1 deletion(-)
    14 
    15 Index: newlib-1.20.0/newlib/libc/machine/m68k/memcpy.S
    16 ===================================================================
    17 --- newlib-1.20.0.orig/newlib/libc/machine/m68k/memcpy.S
    18 +++ newlib-1.20.0/newlib/libc/machine/m68k/memcpy.S
    19 @@ -15,7 +15,7 @@
    20  
    21  #include "m68kasm.h"
    22  
    23 -#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    24 +#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
    25  # define MISALIGNED_OK 1
    26  #else
    27  # define MISALIGNED_OK 0