[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68355] [PATCH v2 2/9] gnu: cross-gcc-toolchain: Use fixed name.
From: |
Jean-Pierre De Jesus DIAZ |
Subject: |
[bug#68355] [PATCH v2 2/9] gnu: cross-gcc-toolchain: Use fixed name. |
Date: |
Fri, 19 Jan 2024 14:54:41 +0100 |
* 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 @@ (define* (cross-gcc-toolchain/implementation target
"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)
--
2.41.0
- [bug#68355] [PATCH 5/8] gnu: make-crust-package: Update to 0.6., (continued)
- [bug#68355] [PATCH 7/8] gnu: Add make-crust-tools., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 3/8] gnu: Add gcc-cross-or1k-elf-toolchain., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 8/8] gnu: make-crust-package: Unite firmware and tools., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH v2 1/9] guix: Add ork1-elf platform., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 3/9] gnu: Add gcc-cross-or1k-elf-toolchain., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 8/9] gnu: Add make-crust-tools., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 5/9] gnu: make-crust-package: Memoize., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 6/9] gnu: make-crust-package: Update to 0.6., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 2/9] gnu: cross-gcc-toolchain: Use fixed name.,
Jean-Pierre De Jesus DIAZ <=
- [bug#68355] [PATCH v2 9/9] gnu: make-crust-package: Unite firmware and tools., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 4/9] gnu: make-crust-package: Use shorter synopsis., Jean-Pierre De Jesus DIAZ, 2024/01/19
- [bug#68355] [PATCH v2 7/9] gnu: make-crust-package: Use or1k-elf as target., Jean-Pierre De Jesus DIAZ, 2024/01/19
- bug#68355: [PATCH v2 1/9] guix: Add ork1-elf platform., Mathieu Othacehe, 2024/01/22