This file is indexed.

/usr/share/cross-gcc/patches/gcc-5/0007-Skip-libjit-when-we-re-cross-building.patch is in cross-gcc-dev 176.

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
18
19
20
21
22
23
24
25
26
From ff1d618e8b799330bd398fdc774418de29f38b22 Mon Sep 17 00:00:00 2001
From: Dima Kogan <dima@secretsauce.net>
Date: Mon, 27 Apr 2015 11:08:31 -0700
Subject: [PATCH 07/11] Skip libjit when we're cross-building

---
 debian/rules.defs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/rules.defs b/debian/rules.defs
index 4b6e5b8..0c9f177 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -551,7 +551,9 @@ endif
 # C ---------------------------
 enabled_languages := c
 
-with_jit = yes
+ifneq ($(DEB_CROSS),yes)
+  with_jit = yes
+endif
 
 # FIXME: compiler bug
 jit_no_cpus	:= ia64
-- 
2.14.1