mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
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:
committed by
Richard Purdie
parent
611e3d87d8
commit
954dc4524d
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user