diff options
Diffstat (limited to 'meta/packages/gcc/gcc-3.4.6/gcc-3.4.0-arm-bigendian-uclibc.patch')
-rw-r--r-- | meta/packages/gcc/gcc-3.4.6/gcc-3.4.0-arm-bigendian-uclibc.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-3.4.6/gcc-3.4.0-arm-bigendian-uclibc.patch b/meta/packages/gcc/gcc-3.4.6/gcc-3.4.0-arm-bigendian-uclibc.patch new file mode 100644 index 0000000000..8fa9af880a --- /dev/null +++ b/meta/packages/gcc/gcc-3.4.6/gcc-3.4.0-arm-bigendian-uclibc.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | |||
2 | # | ||
3 | # Patch managed by http://www.holgerschurig.de/patcher.html | ||
4 | # | ||
5 | |||
6 | --- gcc-3.4.1/gcc/config.gcc~gcc-3.4.0-arm-bigendian-uclibc | ||
7 | +++ gcc-3.4.1/gcc/config.gcc | ||
8 | @@ -666,6 +666,11 @@ | ||
9 | ;; | ||
10 | arm*-*-linux-uclibc*) # ARM GNU/Linux with ELF - uClibc | ||
11 | tm_file="dbxelf.h elfos.h linux.h arm/elf.h arm/linux-gas.h arm/linux-elf.h arm/aout.h arm/arm.h" | ||
12 | + case $target in | ||
13 | + arm*b-*) | ||
14 | + tm_defines="TARGET_BIG_ENDIAN_DEFAULT=1 $tm_defines" | ||
15 | + ;; | ||
16 | + esac | ||
17 | tmake_file="t-slibgcc-elf-ver t-linux-uclibc arm/t-linux" | ||
18 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" | ||
19 | gnu_ld=yes | ||
20 | --- gcc-3.4.1/gcc/config/arm/linux-elf.h~gcc-3.4.0-arm-bigendian-uclibc | ||
21 | +++ gcc-3.4.1/gcc/config/arm/linux-elf.h | ||
22 | @@ -120,7 +120,7 @@ | ||
23 | %{rdynamic:-export-dynamic} \ | ||
24 | %{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2} \ | ||
25 | -X \ | ||
26 | - %{mbig-endian:-EB}" \ | ||
27 | + %{mbig-endian:-EB} %{mlittle-endian:-EL}" \ | ||
28 | SUBTARGET_EXTRA_LINK_SPEC | ||
29 | #endif | ||
30 | |||