2 ## 120_mips_xgot_multigot_workaround.dpatch
4 ## DP: Description: Make multigot/xgot handling mutually exclusive.
5 ## DP: Author: Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
6 ## DP: Upstream status: Not submitted
7 ## DP: Date: 2004-09-17
10 echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
14 [ -f debian
/patches
/00patch-opts
] && . debian
/patches
/00patch-opts
15 patch_opts
="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
18 -patch) patch -p1 ${patch_opts} < $0;;
19 -unpatch) patch -R -p1 ${patch_opts} < $0;;
21 echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
28 diff -urNad /home
/james
/debian
/packages
/binutils
/binutils-2.15
/bfd
/elfxx-mips.c binutils-2.15
/bfd
/elfxx-mips.c
29 --- /home
/james
/debian
/packages
/binutils
/binutils-2.15
/bfd
/elfxx-mips.c
2004-09-23 22:41:37.156466673 +0100
30 +++ binutils-2.15
/bfd
/elfxx-mips.c
2004-09-23 22:42:15.998362861 +0100
32 s-
>size
+= i
* MIPS_ELF_GOT_SIZE
(output_bfd
);
34 if (s-
>size
> MIPS_ELF_GOT_MAX_SIZE
(output_bfd
)
35 + && g-
>global_gotno
<= (MIPS_ELF_GOT_MAX_SIZE
(output_bfd
)
36 + / MIPS_ELF_GOT_SIZE
(output_bfd
))
37 && ! mips_elf_multi_got
(output_bfd
, info
, g
, s
, local_gotno
))