[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
32/60: gnu: mpfr-boot: Update and build package.
From: |
guix-commits |
Subject: |
32/60: gnu: mpfr-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 7d9c96879ebf88dfc542f3d09a46804a58beeae1
Author: Ekaitz Zarraga <ekaitz@elenq.tech>
AuthorDate: Mon Oct 7 18:57:09 2024 +0300
gnu: mpfr-boot: Update and build package.
* gnu/packages/commencement.scm (mpfr-boot): Update to 4.1.0. Replace
with a full package.
Co-authored-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: I472d3e7d037824c8588f951b51035eef06730ca6
---
gnu/packages/commencement.scm | 36 ++++++++++++++++++++++++++++++------
1 file changed, 30 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 1874ccb123..169a48e053 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1635,12 +1635,36 @@ ac_cv_c_float_format='IEEE (little-endian)'
#:make-flags #~(list "MKDIRPROG=mkdir -p")))))
(define mpfr-boot
- (let ((version "2.4.2"))
- (origin
- (method url-fetch)
- (uri (string-append "mirror://gnu/mpfr/mpfr-" version ".tar.gz"))
- (sha256
- (base32 "0dxn4904dra50xa22hi047lj8kkpr41d6vb9sd4grca880c7wv94")))))
+ (package
+ (inherit mpfr)
+ (outputs '("out"))
+ (name "mpfr-boot")
+ (version "4.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/mpfr/mpfr-" version ".tar.gz"))
+ (sha256
+ (base32
"1mm2zxjqxxqlacd87cxlyi63pwrxwafqks7lmpqa3wqq6a0zw9ri"))))
+ (native-inputs (if (target-x86?)
+ (%boot-mesboot1-inputs)
+ (%boot-tcc-musl-inputs)))
+ (inputs '())
+ (propagated-inputs (list gmp-boot))
+ (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"))
+ (string-append "--build=" #$(commencement-build-target))
+ (string-append "--host=" #$(commencement-build-target))
+ "--enable-static"
+ "--disable-shared")))))
(define mpc-boot
(let ((version "1.0.3"))
- 38/60: gnu: Add gcc-muslboot0., (continued)
- 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, 2024/11/24
- 32/60: gnu: mpfr-boot: Update and build package.,
guix-commits <=
- 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
- 33/60: gnu: mpc-boot: Update and build package., guix-commits, 2024/11/24