Hello, I'm from ArchRISC-V Team, a community porting Arch Linux software to RISC-V architecture.
While packaging buddy
, we found an error.
(This link is the log about building processing our lord maintained.)
The config.guess
file is too old to work.
So our team gives this advice.
You can find the patch here that how we fix it.
Or just see the patch below.(in ArchLinux PKGBUILD file):
--- PKGBUILD
+++ PKGBUILD
@@ -14,6 +14,11 @@ source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('3b59cb073bcb3f26efdb851d617ef2ed')
sha256sums=('d3df80a6a669d9ae408cb46012ff17bd33d855529d20f3a7e563d0d913358836')
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ autoreconf -fiv
+ autoupdate
+}
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
config.guess
file). As part of our duty, we do suggest our upstreams doing this once and for all instead. Sincerely thanks. :)
Arch Linux RISC-V Team,
TinySnow