/usr/src/gcc-5/debian/patches/ada-bootstrap-compare.diff is in gcc-5-source 5.5.0-12ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # DP: For the bootstrap comparison, ignore gcc/ada/a-except.o on
# DP: mips and mipsel. See PR ada/65618.
Index: b/src/configure.ac
===================================================================
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -3568,6 +3568,9 @@ fi
compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/*"
case "$target" in
+ mips-*linux-gnu|mipsel-*linux-gnu)
+ compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/* | gcc/ada/a-except.o"
+ ;;
ia64-*linux-gnu)
compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/* | gcc/ira.o"
;;
|