patches/newlib/1.18.0/100-fix-unaligned-access-memcpy-m68k.patch
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
branch1.7
changeset 2047 ace1d90c9b15
permissions -rw-r--r--
scripts: remove . from $PATH

Add CT_SanitizePath function which removes entries referring to ., /tmp
and non-existing directories from $PATH, and call it early in the
build script.

If . is in PATH, gcc-4.4.4 build breaks:

[ALL ] checking what assembler to use...
/tmp/build/targets/arm-unknown-linux-uclibcgnueabi/build/gcc-core-static/arm-unknown-linux-uclibcgnueabi/bin/as
...
[ALL ] config.status: creating as

i.e. "as" is supposed to be the arm-unknown-linux-uclibcgnueabi cross assembler,
but config.status creates a local "as" script which is calling the
host assembler.

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