GNU bug report logs -
#61600
Subject: [PATCH 1/2] gnu: allow more cross target
Previous Next
Full log
View this message in rfc822 format
From 836c0e3e7112d5f3d3630aebfbabbd45242eb216 Mon Sep 17 00:00:00 2001
From: LuHui <luhux76 <at> gmail.com>
Date: Sat, 18 Feb 2023 16:18:52 +0800
Subject: [PATCH 1/2] gnu: allow more cross target
* gnu/packages/bootstrap.scm: add mips and riscv target.
---
gnu/packages/bootstrap.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 75980f2148..f6b92a2aaa 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -7,6 +7,7 @@
;;; Copyright © 2019 Léo Le Bouter <lle-bout <at> zaclys.net>
;;; Copyright © 2020 Jakub Kądziołka <kuba <at> kadziolka.net>
;;; Copyright © 2021 Chris Marusich <cmmarusich <at> gmail.com>
+;;; Copyright © 2023 Lu Hui <luhux76 <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -329,6 +330,12 @@ (define* (glibc-dynamic-linker
;; here just so we can keep going.
((string=? system "arm-elf") "no-ld.so")
((string=? system "arm-eabi") "no-ld.so")
+ ((string=? system "mips-elf") "no-ld.so")
+ ((string=? system "mipsel-elf") "no-ld.so")
+ ((string=? system "mips64-elf") "no-ld.so")
+ ((string=? system "mips64el-elf") "no-ld.so")
+ ((string=? system "riscv32-elf") "no-ld.so")
+ ((string=? system "riscv64-elf") "no-ld.so")
((string=? system "xtensa-elf") "no-ld.so")
((string=? system "avr") "no-ld.so")
((string=? system "propeller-elf") "no-ld.so")
--
2.39.1
This bug report was last modified 2 years and 123 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.