mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
packages/guile: bump to version 3.0.8
Signed-off-by: Pedro Aguilar <paguilar@paguilar.org> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
committed by
Arnout Vandecappelle (Essensium/Mind)
parent
9a78a75613
commit
3eb888ce39
@@ -1,33 +0,0 @@
|
|||||||
From 6142350d7c0562b0525462abdd41309ae0faa2eb Mon Sep 17 00:00:00 2001
|
|
||||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
Date: Fri, 6 Aug 2021 19:49:37 +0200
|
|
||||||
Subject: [PATCH] module/system/base/target.scm: support riscv32
|
|
||||||
|
|
||||||
Fix the following build failure on riscv32:
|
|
||||||
|
|
||||||
system/base/target.scm:132:16: In procedure triplet-pointer-size:
|
|
||||||
unknown CPU word size "riscv32"
|
|
||||||
|
|
||||||
Fixes:
|
|
||||||
- http://autobuild.buildroot.org/results/6705630c1484239ec8b73d57ebc2e2570fbfc8f8
|
|
||||||
|
|
||||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
---
|
|
||||||
module/system/base/target.scm | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/module/system/base/target.scm b/module/system/base/target.scm
|
|
||||||
index 2088cd866..dba46664d 100644
|
|
||||||
--- a/module/system/base/target.scm
|
|
||||||
+++ b/module/system/base/target.scm
|
|
||||||
@@ -116,6 +116,7 @@
|
|
||||||
|
|
||||||
((string-match "^x86_64-.*-gnux32" triplet) 4) ; x32
|
|
||||||
|
|
||||||
+ ((string-match "32$" cpu) 4)
|
|
||||||
((string-match "64$" cpu) 8)
|
|
||||||
((string-match "64_?[lbe][lbe]$" cpu) 8)
|
|
||||||
((member cpu '("sparc" "powerpc" "mips" "mipsel" "nios2" "m68k" "sh3" "sh4")) 4)
|
|
||||||
--
|
|
||||||
2.30.2
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
|||||||
# Locally calculated after checking pgp signature
|
# Locally calculated after checking pgp signature
|
||||||
sha256 f57d86c70620271bfceb7a9be0c81744a033f08adc7ceba832c9917ab3e691b7 guile-3.0.7.tar.xz
|
sha256 daa7060a56f2804e9b74c8d7e7fe8beed12b43aab2789a38585183fcc17b8a13 guile-3.0.8.tar.xz
|
||||||
# Locally computed
|
# Locally computed
|
||||||
sha256 b51c6f20e6d029cb5b3e5bf235ac562c9a188c5bdc4ffcdc663897772d6e0260 LICENSE
|
sha256 b51c6f20e6d029cb5b3e5bf235ac562c9a188c5bdc4ffcdc663897772d6e0260 LICENSE
|
||||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
GUILE_VERSION = 3.0.7
|
GUILE_VERSION = 3.0.8
|
||||||
GUILE_SOURCE = guile-$(GUILE_VERSION).tar.xz
|
GUILE_SOURCE = guile-$(GUILE_VERSION).tar.xz
|
||||||
GUILE_SITE = $(BR2_GNU_MIRROR)/guile
|
GUILE_SITE = $(BR2_GNU_MIRROR)/guile
|
||||||
GUILE_INSTALL_STAGING = YES
|
GUILE_INSTALL_STAGING = YES
|
||||||
|
|||||||
Reference in New Issue
Block a user