[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
31/60: gnu: gmp-boot: Update and build package.
From: |
guix-commits |
Subject: |
31/60: gnu: gmp-boot: Update and build package. |
Date: |
Sun, 24 Nov 2024 02:50:14 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit 0ce8b9ccd9e6855636511173e4aaec11c8e914e0
Author: Ekaitz Zarraga <ekaitz@elenq.tech>
AuthorDate: Mon Oct 7 18:56:16 2024 +0300
gnu: gmp-boot: Update and build package.
* gnu/packages/commencement.scm (gmp-boot): Update to 5.1.3. Replace
with a full package.
Co-authored-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: I6dcabd1f2b311063829fb680007b2ac1ba82be34
---
gnu/packages/commencement.scm | 40 ++++++++++++++++++++++++++++++++++------
1 file changed, 34 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index eed1d0208e..1874ccb123 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1599,12 +1599,40 @@ ac_cv_c_float_format='IEEE (little-endian)'
(string-append "--host=" #$(commencement-build-target)))))))
(define gmp-boot
- (let ((version "4.3.2"))
- (origin
- (method url-fetch)
- (uri (string-append "mirror://gnu/gmp/gmp-" version ".tar.gz"))
- (sha256
- (base32 "15rwq54fi3s11izas6g985y9jklm3xprfsmym3v1g6xr84bavqvv")))))
+ (package
+ (inherit gmp)
+ (outputs '("out"))
+ (name "gmp-boot")
+ (version "5.1.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/gmp/gmp-" version ".tar.gz"))
+ (sha256
+ (base32
"09w5yzlvdll19fa9zhh0f4y97hv8483cbly0003zvbvyighpzwvi"))))
+ (native-inputs (if (target-x86?)
+ (%boot-mesboot1-inputs)
+ (%boot-tcc-musl-inputs)))
+ (inputs (list m4-boot))
+ (propagated-inputs '())
+ (arguments
+ (list
+ #:guile %bootstrap-guile
+ #:tests? #f
+ #:implicit-inputs? #f
+ #:parallel-build? (target-x86?)
+ #:configure-flags
+ #~(list #$@(if (target-x86?)
+ #~()
+ #~("CC=tcc"
+ "CFLAGS=-DHAVE_ALLOCA_H"))
+ ;; These break building on x86_64-linux.
+ ;(string-append "--build=" #$(commencement-build-target))
+ ;(string-append "--host=" #$(commencement-build-target))
+ "--enable-static"
+ "--disable-shared"
+ "--disable-assembly")
+ ;; Gash crashes on mkdir called through install creating
%output/share/info
+ #:make-flags #~(list "MKDIRPROG=mkdir -p")))))
(define mpfr-boot
(let ((version "2.4.2"))
- 34/60: gnu: gcc-core-mesboot1: Adjust for dependency changes., (continued)
- 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, 2024/11/24
- 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 <=
- 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
- 54/60: gnu: %boot0-inputs: Use newly built *-boot0 packages on riscv64-linux., guix-commits, 2024/11/24
- 55/60: gnu: %boot0-inputs: Remove duplicate packages., guix-commits, 2024/11/24
- 58/60: gnu: ed: Update to 1.20.2., guix-commits, 2024/11/24
- 30/60: gnu: Add m4-boot., guix-commits, 2024/11/24