guile: Fix nios2 support

Add minor patch to recognize nios2 build target.

(From OE-Core rev: b2a5f9e98fd6bd7e1deeb0cd83587eb567ed6d75)

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Ross Burton <ross.burton@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Marek Vasut
2016-02-10 01:04:03 +01:00
committed by Richard Purdie
parent 611e3d87d8
commit 954dc4524d
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
From 76155065c70b5ab65c6c805423183b360141db84 Mon Sep 17 00:00:00 2001
From: Marek Vasut <marex@denx.de>
Date: Thu, 28 Jan 2016 04:46:23 +0100
Subject: [PATCH] Recognize nios2 as compilation target
Signed-off-by: Marek Vasut <marex@denx.de>
Upstream-Status: Submitted [ http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22480 ]
---
module/system/base/target.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/module/system/base/target.scm b/module/system/base/target.scm
index d60a8e0..d1f6cff 100644
--- a/module/system/base/target.scm
+++ b/module/system/base/target.scm
@@ -65,7 +65,7 @@
(cond ((string-match "^i[0-9]86$" cpu)
(endianness little))
((member cpu '("x86_64" "ia64"
- "powerpcle" "powerpc64le" "mipsel" "mips64el"))
+ "powerpcle" "powerpc64le" "mipsel" "mips64el" "nios2"))
(endianness little))
((member cpu '("sparc" "sparc64" "powerpc" "powerpc64" "spu"
"mips" "mips64"))
@@ -100,7 +100,7 @@
((string-match "64$" cpu) 8)
((string-match "64[lbe][lbe]$" cpu) 8)
- ((member cpu '("sparc" "powerpc" "mips" "mipsel")) 4)
+ ((member cpu '("sparc" "powerpc" "mips" "mipsel" "nios2")) 4)
((string-match "^arm.*" cpu) 4)
(else (error "unknown CPU word size" cpu)))))
--
2.7.0.rc3

View File

@@ -25,6 +25,7 @@ SRC_URI = "${GNU_MIRROR}/guile/guile-${PV}.tar.xz \
file://libguile-VM-ASM_MUL-for-ARM-Add-earlyclobber.patch \
file://remove_strcase_l_funcs.patch \
file://0001-libguile-Check-for-strtol_l-during-configure.patch \
file://0002-Recognize-nios2-as-compilation-target.patch \
"
# file://debian/0001-Change-guile-to-guile-X.Y-for-info-pages.patch