/usr/share/cross-gcc/patches/gcc-7/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 dcec811b905e56938b90fb8bf5e39c87ee54e4a8 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 16f33a0..c1bd941 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -620,7 +620,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
|