[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/85: gnu: gcc-core-mesboot1: Adjust for dependency changes.
From: |
guix-commits |
Subject: |
34/85: gnu: gcc-core-mesboot1: Adjust for dependency changes. |
Date: |
Tue, 17 Dec 2024 04:08:07 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit 6f9e09f5685b282cc1de10b0dc323666ac774ce9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 8 08:18:57 2024 +0300
gnu: gcc-core-mesboot1: Adjust for dependency changes.
* gnu/packages/commencement.scm (gcc-core-mesboot1)[inputs]: Replace
gmp-source, mpfr-source and mpc-source with gmp, mpfr and mpc.
[arguments]: Remove the 'unpack-gmp&co and 'setenv phases.
Change-Id: Ie42824696501470a6d1bf3940dc9ed88f2b18131
---
gnu/packages/commencement.scm | 55 +++----------------------------------------
1 file changed, 3 insertions(+), 52 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 9169d8aa35..5c7caec4eb 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1714,9 +1714,7 @@ ac_cv_c_float_format='IEEE (little-endian)'
(sha256
(base32
"173kdb188qg79pcz073cj9967rs2vzanyjdjyxy9v0xb0p5sad75"))))
- (inputs `(("gmp-source" ,gmp-boot)
- ("mpfr-source" ,mpfr-boot)
- ("mpc-source" ,mpc-boot)))
+ (inputs (list gmp-boot mpfr-boot mpc-boot))
(native-inputs (%boot-mesboot1-inputs))
(arguments
(list #:implicit-inputs? #f
@@ -1774,55 +1772,8 @@ ac_cv_c_float_format='IEEE (little-endian)'
(let ((patch-file
#$(local-file
(search-patch "gcc-boot-4.6.4.patch"))))
- (invoke "patch" "--force" "-p1" "-i" patch-file))))
- ;; c&p from commencement.scm:gcc-boot0
- (add-after 'unpack 'unpack-gmp&co
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((gmp (assoc-ref %build-inputs "gmp-source"))
- (mpfr (assoc-ref %build-inputs "mpfr-source"))
- (mpc (assoc-ref %build-inputs "mpc-source")))
-
- ;; To reduce the set of pre-built bootstrap inputs, build
- ;; GMP & co. from GCC.
- (for-each (lambda (source)
- (or (invoke "tar" "xvf" source)
- (error "failed to unpack tarball"
- source)))
- (list gmp mpfr mpc))
-
- ;; Create symlinks like `gmp' -> `gmp-x.y.z'.
- #$@(map (lambda (lib package)
- ;; Drop trailing letters, as gmp-6.0.0a unpacks
- ;; into gmp-6.0.0.
- #~(symlink #$(string-trim-right
- (basename
- (origin-actual-file-name lib)
- ".tar.gz")
- char-set:letter)
- #$package))
- (list gmp-boot mpfr-boot mpc-boot)
- '("gmp" "mpfr" "mpc")))))
- (add-before 'configure 'setenv
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (binutils (assoc-ref %build-inputs "binutils"))
- (bash (assoc-ref %build-inputs "bash"))
- (gcc (assoc-ref %build-inputs "gcc"))
- (glibc (assoc-ref %build-inputs "libc"))
- (kernel-headers (assoc-ref %build-inputs
"kernel-headers")))
- (setenv "CONFIG_SHELL" (string-append bash "/bin/sh"))
- (setenv "C_INCLUDE_PATH" (string-append
- gcc "/lib/gcc-lib/"
- #$(commencement-build-target)
- "/2.95.3/include"
- ":" kernel-headers "/include"
- ":" glibc "/include"
- ":" (getcwd) "/mpfr/src"))
- (setenv "LIBRARY_PATH" (string-append glibc "/lib"
- ":" gcc "/lib"))
- (format (current-error-port) "C_INCLUDE_PATH=~a\n"
(getenv "C_INCLUDE_PATH"))
- (format (current-error-port) "LIBRARY_PATH=~a\n"
- (getenv "LIBRARY_PATH"))))))))))
+ (invoke "patch" "--force" "-p1" "-i" patch-file)))))))))
+
(define gcc-mesboot1
(package
- 19/85: gnu: mes-boot: Enable support for armhf-linux and aarch64-linux., (continued)
- 19/85: gnu: mes-boot: Enable support for armhf-linux and aarch64-linux., guix-commits, 2024/12/17
- 21/85: gnu: tcc-boot0: Specify the build target., guix-commits, 2024/12/17
- 24/85: gnu: Add musl-boot0., guix-commits, 2024/12/17
- 25/85: gnu: Add tcc-boot-musl., guix-commits, 2024/12/17
- 08/85: gnu: gzip-mesboot: Allow building on all systems., guix-commits, 2024/12/17
- 12/85: gnu: gcc-core-mesboot0: Use commencement-build-target., guix-commits, 2024/12/17
- 17/85: gnu: glibc-headers-mesboot: Use commencement-build-target., guix-commits, 2024/12/17
- 77/85: gnu: gcc-mesboot1: Use full gcc sources., guix-commits, 2024/12/17
- 84/85: gnu: bison-boot0: Update flags for riscv64-linux., guix-commits, 2024/12/17
- 27/85: gnu: Add oksh-muslboot0., guix-commits, 2024/12/17
- 34/85: gnu: gcc-core-mesboot1: Adjust for dependency changes.,
guix-commits <=
- 36/85: gnu: gcc-mesboot1: Adjust setting include paths., guix-commits, 2024/12/17
- 48/85: gnu: mesboot-package: Adjust for riscv64-linux builds., guix-commits, 2024/12/17
- 68/85: gnu: musl-boot0: Upgrade to 1.2.5., guix-commits, 2024/12/17
- 76/85: fixup gcc-muslboot0, guix-commits, 2024/12/17
- 47/85: gnu: Add %boot-muslboot3-inputs., guix-commits, 2024/12/17
- 60/85: gnu: binutils-mesboot: Update to 2.30., guix-commits, 2024/12/17
- 50/85: gnu: %bootstrap-inputs+toolchain: Switch riscv64-linux to full bootstrap., guix-commits, 2024/12/17
- 71/85: gnu: m4-boot0: Downgrade to 1.4.18., guix-commits, 2024/12/17
- 64/85: fixup WIP: musl-boot0: Add fixes for i686 and x86_64., guix-commits, 2024/12/17
- 30/85: gnu: Add m4-boot., guix-commits, 2024/12/17