/usr/share/cross-gcc/patches/gcc-6/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 8953801b10e314e43d94d9de787fdceb2d9c403e 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 b1faa92..aaf596c 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -608,7 +608,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
|