1 By Lennert Buytenhek <buytenh@wantstofly.org>
2 Adds support for arm*b-linux* big-endian ARM targets
4 See http://gcc.gnu.org/PR16350
6 --- a/gcc/config/arm/linux-elf.h
7 +++ b/gcc/config/arm/linux-elf.h
10 #define TARGET_VERSION fputs (" (ARM GNU/Linux with ELF)", stderr);
13 + * 'config.gcc' defines TARGET_BIG_ENDIAN_DEFAULT as 1 for arm*b-*
14 + * (big endian) configurations.
16 +#if TARGET_BIG_ENDIAN_DEFAULT
17 +#define TARGET_ENDIAN_DEFAULT MASK_BIG_END
18 +#define TARGET_ENDIAN_OPTION "mbig-endian"
19 +#define TARGET_LINKER_EMULATION "armelfb_linux"
21 +#define TARGET_ENDIAN_DEFAULT 0
22 +#define TARGET_ENDIAN_OPTION "mlittle-endian"
23 +#define TARGET_LINKER_EMULATION "armelf_linux"
26 #undef TARGET_DEFAULT_FLOAT_ABI
27 #define TARGET_DEFAULT_FLOAT_ABI ARM_FLOAT_ABI_HARD
30 -#define TARGET_DEFAULT (0)
31 +#define TARGET_DEFAULT (TARGET_ENDIAN_DEFAULT)
33 #define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm6
35 -#define SUBTARGET_EXTRA_LINK_SPEC " -m armelf_linux -p"
36 +#define SUBTARGET_EXTRA_LINK_SPEC " -m " TARGET_LINKER_EMULATION " -p"
38 #undef MULTILIB_DEFAULTS
39 #define MULTILIB_DEFAULTS \
40 - { "marm", "mlittle-endian", "mhard-float", "mno-thumb-interwork" }
41 + { "marm", TARGET_ENDIAN_OPTION, "mhard-float", "mno-thumb-interwork" }
43 /* Now we define the strings used to build the spec file. */
46 %{rdynamic:-export-dynamic} \
47 %{!dynamic-linker:-dynamic-linker " LINUX_TARGET_INTERPRETER "} \
49 - %{mbig-endian:-EB}" \
50 + %{mbig-endian:-EB} %{mlittle-endian:-EL}" \
51 SUBTARGET_EXTRA_LINK_SPEC
56 @@ -672,6 +672,11 @@ arm*-*-netbsd*)
58 arm*-*-linux*) # ARM GNU/Linux with ELF
59 tm_file="dbxelf.h elfos.h linux.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
62 + tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
65 tmake_file="${tmake_file} t-linux arm/t-arm"
67 arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
68 --- a/gcc/config/arm/linux-eabi.h
69 +++ b/gcc/config/arm/linux-eabi.h
71 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
72 Boston, MA 02110-1301, USA. */
75 + * 'config.gcc' defines TARGET_BIG_ENDIAN_DEFAULT as 1 for arm*b-*
76 + * (big endian) configurations.
78 +#undef TARGET_LINKER_EMULATION
79 +#if TARGET_BIG_ENDIAN_DEFAULT
80 +#define TARGET_LINKER_EMULATION "armelfb_linux_eabi"
82 +#define TARGET_LINKER_EMULATION "armelf_linux_eabi"
85 /* On EABI GNU/Linux, we want both the BPABI builtins and the
86 GNU/Linux builtins. */
87 #undef TARGET_OS_CPP_BUILTINS
89 #define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm10tdmi
91 #undef SUBTARGET_EXTRA_LINK_SPEC
92 -#define SUBTARGET_EXTRA_LINK_SPEC " -m armelf_linux_eabi"
93 +#define SUBTARGET_EXTRA_LINK_SPEC " -m " TARGET_LINKER_EMULATION
95 /* Use ld-linux.so.3 so that it will be possible to run "classic"
96 GNU/Linux binaries on an EABI system. */
97 --- a/gcc/config/arm/bpabi.h
98 +++ b/gcc/config/arm/bpabi.h
100 #undef FPUTYPE_DEFAULT
101 #define FPUTYPE_DEFAULT FPUTYPE_VFP
104 + * 'config.gcc' defines TARGET_BIG_ENDIAN_DEFAULT as 1 for arm*b-*
105 + * (big endian) configurations.
107 +#if TARGET_BIG_ENDIAN_DEFAULT
108 +#define TARGET_ENDIAN_DEFAULT MASK_BIG_END
110 +#define TARGET_ENDIAN_DEFAULT 0
113 /* EABI targets should enable interworking by default. */
114 #undef TARGET_DEFAULT
115 -#define TARGET_DEFAULT MASK_INTERWORK
116 +#define TARGET_DEFAULT (MASK_INTERWORK | TARGET_ENDIAN_DEFAULT)
118 /* The ARM BPABI functions return a boolean; they use no special
119 calling convention. */