/usr/share/cross-gcc/patches/gcc-6/0007-Skip-libjit-when-we-re-cross-building.patch is in cross-gcc-dev 76.
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 3c704a14948832f2222ed3298fc3f8fcd2b87c9e 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 18528cd..8cc6b0d 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -522,7 +522,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.0.0
|