diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/gcc/gcc-3.3.3/arm-common.dpatch | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/gcc/gcc-3.3.3/arm-common.dpatch')
-rw-r--r-- | packages/gcc/gcc-3.3.3/arm-common.dpatch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/packages/gcc/gcc-3.3.3/arm-common.dpatch b/packages/gcc/gcc-3.3.3/arm-common.dpatch index e69de29bb2..232726788a 100644 --- a/packages/gcc/gcc-3.3.3/arm-common.dpatch +++ b/packages/gcc/gcc-3.3.3/arm-common.dpatch @@ -0,0 +1,50 @@ +#! /bin/sh -e + +src=gcc +if [ $# -eq 3 -a "$2" = '-d' ]; then + pdir="-d $3" + src=$3/gcc +elif [ $# -ne 1 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) + patch $pdir -f --no-backup-if-mismatch -p0 --fuzz 10 < $0 + ;; + -unpatch) + patch $pdir -f --no-backup-if-mismatch -R -p0 --fuzz 10 < $0 + ;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +# DP: delete ASM_OUTPUT_ALIGNED_COMMON from arm/elf.h, since it outputs +# DP: the alignment in bits not bytes. + +Index: gcc/config/arm/elf.h +=================================================================== +RCS file: /cvs/gcc/gcc/gcc/config/arm/elf.h,v +retrieving revision 1.39 +diff -u -r1.39 elf.h +--- gcc/config/arm/elf.h 21 Nov 2002 21:29:24 -0000 1.39 ++++ gcc/config/arm/elf.h 20 Sep 2003 14:22:46 -0000 +@@ -152,16 +152,6 @@ + #undef TARGET_ASM_NAMED_SECTION + #define TARGET_ASM_NAMED_SECTION arm_elf_asm_named_section + +-#undef ASM_OUTPUT_ALIGNED_COMMON +-#define ASM_OUTPUT_ALIGNED_COMMON(STREAM, NAME, SIZE, ALIGN) \ +- do \ +- { \ +- fprintf (STREAM, "\t.comm\t"); \ +- assemble_name (STREAM, NAME); \ +- fprintf (STREAM, ", %d, %d\n", SIZE, ALIGN); \ +- } \ +- while (0) +- + /* For PIC code we need to explicitly specify (PLT) and (GOT) relocs. */ + #define NEED_PLT_RELOC flag_pic + #define NEED_GOT_RELOC flag_pic |