This file is indexed.

/usr/share/cross-gcc/patches/gcc-8/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 541a4edca99cf387f8e76ac916d5f0847cbb76e3 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/10] 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 7f9d900..ce27f84 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -621,7 +621,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