[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/60: gnu: gcc-mesboot1-wrapper: Correctly target more systems.
From: |
guix-commits |
Subject: |
20/60: gnu: gcc-mesboot1-wrapper: Correctly target more systems. |
Date: |
Sun, 24 Nov 2024 02:50:12 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit 1c0a3bf80727dd4a99b38edec5712c7c96f50c99
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 1 11:53:11 2024 +0300
gnu: gcc-mesboot1-wrapper: Correctly target more systems.
* gnu/packages/commencement.scm (gcc-mesboot1-wrapper)[arguments]:
Adjust the 'build phase to correctly target more architectures.
Change-Id: I26ed5d329d7b3c80d74edd27acf4f2865928db7b
---
gnu/packages/commencement.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index e967eb7c74..9b52974a3c 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1724,8 +1724,9 @@ SHELL := " shell "
(display (string-append "#! " bash "/bin/bash
exec " gcc "/bin/" program
" -Wl,--dynamic-linker"
-;; also for x86_64-linux, we are still on i686-linux
-" -Wl," libc ,(glibc-dynamic-linker "i686-linux")
+" -Wl," libc ,(glibc-dynamic-linker
+ (gnu-triplet->nix-system
+ (commencement-build-target)))
" -Wl,--rpath"
" -Wl," libc "/lib"
" \"$@\"
@@ -1734,9 +1735,9 @@ exec " gcc "/bin/" program
'("cpp"
"gcc"
"g++"
- "i686-unknown-linux-gnu-cpp"
- "i686-unknown-linux-gnu-gcc"
- "i686-unknown-linux-gnu-g++")))))
+ ,(string-append (commencement-build-target) "-cpp")
+ ,(string-append (commencement-build-target) "-gcc")
+ ,(string-append (commencement-build-target) "-g++"))))))
(replace 'check
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
- 08/60: gnu: gzip-mesboot: Allow building on all systems., (continued)
- 08/60: gnu: gzip-mesboot: Allow building on all systems., guix-commits, 2024/11/24
- 09/60: gnu: gnu-make-mesboot0: Update to 3.82., guix-commits, 2024/11/24
- 13/60: gnu: glibc-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 03/60: gnu: mes-boot: Update to 0.27., guix-commits, 2024/11/24
- 19/60: gnu: mes-boot: Enable support for armhf-linux and aarch64-linux., guix-commits, 2024/11/24
- 17/60: gnu: glibc-headers-mesboot: Use commencement-build-target., guix-commits, 2024/11/24
- 23/60: gnu: tcc-boot: Update to 0.9.27.1139-8cd21e9., guix-commits, 2024/11/24
- 29/60: gnu: Add %boot-tcc-musl-inputs., guix-commits, 2024/11/24
- 28/60: gnu: Add binutils-muslboot0., guix-commits, 2024/11/24
- 11/60: gnu: binutils-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 20/60: gnu: gcc-mesboot1-wrapper: Correctly target more systems.,
guix-commits <=
- 06/60: gnu: Add commencement-build-target., guix-commits, 2024/11/24
- 27/60: gnu: Add oksh-muslboot0., guix-commits, 2024/11/24
- 12/60: gnu: gcc-core-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 14/60: gnu: gcc-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 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