mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
cf395e3876
Add 4.4.4 and forward-port patchset from 4.4.3
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
By Lennert Buytenhek <buytenh@wantstofly.org>
|
|
Adds support for arm*b-linux* big-endian ARM targets
|
|
|
|
See http://gcc.gnu.org/PR16350
|
|
|
|
diff -durN gcc-4.4.4.orig/gcc/config/arm/linux-elf.h gcc-4.4.4/gcc/config/arm/linux-elf.h
|
|
--- gcc-4.4.4.orig/gcc/config/arm/linux-elf.h 2009-02-20 16:20:38.000000000 +0100
|
|
+++ gcc-4.4.4/gcc/config/arm/linux-elf.h 2010-05-16 19:38:07.000000000 +0200
|
|
@@ -51,7 +51,7 @@
|
|
|
|
#undef MULTILIB_DEFAULTS
|
|
#define MULTILIB_DEFAULTS \
|
|
- { "marm", "mlittle-endian", "mhard-float", "mno-thumb-interwork" }
|
|
+ { "marm", TARGET_ENDIAN_OPTION, "mhard-float", "mno-thumb-interwork" }
|
|
|
|
/* Now we define the strings used to build the spec file. */
|
|
#undef LIB_SPEC
|
|
diff -durN gcc-4.4.4.orig/gcc/config.gcc gcc-4.4.4/gcc/config.gcc
|
|
--- gcc-4.4.4.orig/gcc/config.gcc 2010-05-16 19:36:15.000000000 +0200
|
|
+++ gcc-4.4.4/gcc/config.gcc 2010-05-16 19:38:07.000000000 +0200
|
|
@@ -733,6 +733,11 @@
|
|
tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h"
|
|
tmake_file="arm/t-arm arm/t-arm-elf"
|
|
case ${target} in
|
|
+ arm*b-*)
|
|
+ tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
|
|
+ ;;
|
|
+ esac
|
|
+ case ${target} in
|
|
arm*-*-uclinux*eabi)
|
|
tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h"
|
|
tmake_file="$tmake_file arm/t-bpabi"
|