[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
48/60: gnu: mesboot-package: Adjust for riscv64-linux builds.
From: |
guix-commits |
Subject: |
48/60: gnu: mesboot-package: Adjust for riscv64-linux builds. |
Date: |
Sun, 24 Nov 2024 02:50:17 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit 312025b745156ec43d3ed7f969b633d4aa312948
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 21 14:54:48 2024 +0300
gnu: mesboot-package: Adjust for riscv64-linux builds.
* gnu/packages/commencement.scm (mesboot-package)[supported-systems]:
Add riscv64-linux.
[native-inputs]: Use %boot-mesboot5-inputs or %boot-muslboot3-inputs
depending on the system.
[arguments]: Don't enable parallel building on riscv64-linux.
Change-Id: I2e57278dcd1c1e14314ddd9a7fdc081245e08720
---
gnu/packages/commencement.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 5dde779bcf..3430e0ce0d 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2531,14 +2531,17 @@ exec " gcc "/bin/" program
(inherit pkg)
(name name)
(source (bootstrap-origin (package-source pkg)))
- (native-inputs (%boot-mesboot5-inputs))
- (supported-systems '("i686-linux" "x86_64-linux"))
+ (native-inputs (if (target-x86?)
+ (%boot-mesboot5-inputs)
+ (%boot-muslboot3-inputs)))
+ (supported-systems '("i686-linux" "x86_64-linux" "riscv64-linux"))
(inputs '())
(propagated-inputs '())
(arguments
(ensure-keyword-arguments (package-arguments pkg)
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
+ #:parallel-build? ,(not (target-riscv64?))
#:tests? #f)))))
;; These packages are needed to complete the rest of the bootstrap.
- 15/60: gnu: binutils-mesboot1: Use commencement-build-target., (continued)
- 15/60: gnu: binutils-mesboot1: Use commencement-build-target., guix-commits, 2024/11/24
- 18/60: gnu: gcc-mesboot: Use commencement-build-target., guix-commits, 2024/11/24
- 22/60: gnu: tcc-boot: Support more architectures., guix-commits, 2024/11/24
- 25/60: gnu: Add tcc-boot-musl., guix-commits, 2024/11/24
- 34/60: gnu: gcc-core-mesboot1: Adjust for dependency changes., guix-commits, 2024/11/24
- 38/60: gnu: Add gcc-muslboot0., guix-commits, 2024/11/24
- 42/60: gnu: hello-mesboot: Add support for riscv64-linux., guix-commits, 2024/11/24
- 43/60: gnu: Add byacc-mesboot., guix-commits, 2024/11/24
- 46/60: gnu: Add mawk-mesboot., guix-commits, 2024/11/24
- 49/60: gnu: %boot-mesboot6-inputs: Adjust for riscv64-linux., guix-commits, 2024/11/24
- 48/60: gnu: mesboot-package: Adjust for riscv64-linux builds.,
guix-commits <=
- 53/60: gnu: file-boot0: Fix building on riscv64-linux., guix-commits, 2024/11/24
- 52/60: gnu: findutils-boot0: Adjust the skipped tests on riscv64-linux., guix-commits, 2024/11/24
- 21/60: gnu: tcc-boot0: Specify the build target., guix-commits, 2024/11/24
- 31/60: gnu: gmp-boot: Update and build package., guix-commits, 2024/11/24
- 32/60: gnu: mpfr-boot: Update and build package., guix-commits, 2024/11/24
- 37/60: gnu: gcc-mesboot: Adjust for changes in gcc-mesboot1., guix-commits, 2024/11/24
- 39/60: gnu: Add musl-boot., guix-commits, 2024/11/24
- 56/60: gnu: Add byacc-boot0., guix-commits, 2024/11/24
- 36/60: gnu: gcc-mesboot1: Adjust setting include paths., guix-commits, 2024/11/24
- 41/60: gnu: Add %boot-muslboot2-inputs., guix-commits, 2024/11/24