aboutsummaryrefslogtreecommitdiff
path: root/packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-01-28 11:42:24 -0800
committerAlexey Neyman <stilor@att.net>2018-01-28 19:25:47 -0800
commit66ad1ff51411c24bfad7c1892f7481a9cdc924f8 (patch)
tree56ba7ceb17e192a9b3eafe01064aeb27f33ab033 /packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch
parentba165ed4c0bfa8a83e61a2efd1ad205777978486 (diff)
downloadcrosstool-ng-66ad1ff51411c24bfad7c1892f7481a9cdc924f8.tar.gz
crosstool-ng-66ad1ff51411c24bfad7c1892f7481a9cdc924f8.tar.bz2
crosstool-ng-66ad1ff51411c24bfad7c1892f7481a9cdc924f8.zip
Upgrade to new releases
android-ndk, binutils, gcc, linux, mpfr, ncurses, newlib, uclibc-ng MPC vs MPFR dependencies required modifications in auto-generated templates to also provide non-inclusive older-than/newer-than specifications. Also correct MPC URLs, the website seems to have adjusted its directory layout. Currently, newlib 3.0.0 doesn't build for arm-nano-eabi. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch')
-rw-r--r--packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch b/packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch
deleted file mode 100644
index b6709d5a..00000000
--- a/packages/newlib/2.5.0.20170922/0000-fix-unaligned-access-memcpy-m68k.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-The m68k mcpu processor does not like unaligned access
-
-Disable at least mcpu32, m68010 and m68020. These processors certainly
-do not like unaligned accesses.
-
-Signed-off-by: Remy Bohmer <linux@bohmer.net>
-[yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0]
-Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-[austinpmorton@gmail.com: update for 1.20.0 from 1.19.0]
-Signed-off-by: Austin Morton <austinpmorton@gmail.com>
----
- newlib/libc/machine/m68k/memcpy.S | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/newlib/libc/machine/m68k/memcpy.S
-+++ b/newlib/libc/machine/m68k/memcpy.S
-@@ -15,7 +15,7 @@
-
- #include "m68kasm.h"
-
--#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
-+#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
- # define MISALIGNED_OK 1
- #else
- # define MISALIGNED_OK 0