guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/09: gnu: cross-gcc-toolchain: Use fixed name.


From: guix-commits
Subject: 02/09: gnu: cross-gcc-toolchain: Use fixed name.
Date: Mon, 22 Jan 2024 05:33:05 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 82aef470ce816f34bda89cee50f57639192e4261
Author: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
AuthorDate: Fri Jan 19 14:54:41 2024 +0100

    gnu: cross-gcc-toolchain: Use fixed name.
    
    * gnu/packages/cross-base.scm (cross-gcc-toolchain) <name>: Always use
    gcc-cross- prefix regardless of TARGET having a C standard library or not.
    
    Change-Id: I5cbe89c61e5bd324a385db17c27131ea5ef75669
---
 gnu/packages/cross-base.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cross-base.scm b/gnu/packages/cross-base.scm
index 6ee7b315d8..2d79e0acf6 100644
--- a/gnu/packages/cross-base.scm
+++ b/gnu/packages/cross-base.scm
@@ -745,7 +745,9 @@ returned."
   "Returns PACKAGE that contains a cross-compilation tool chain for TARGET
 with XBINUTILS, XGCC and LIBC (if exists for TARGET)."
   (package
-    (name (string-append (package-name xgcc) "-toolchain"))
+    ;; Using PACKAGE-NAME of XGCC is avoided here as there are platforms that
+    ;; still need a toolchain but don't have a libc (e.g. or1k-elf).
+    (name (string-append "gcc-cross-" target "-toolchain"))
     (version (package-version xgcc))
     (source #f)
     (build-system trivial-build-system)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]