From: tobtoht Date: Thu, 7 Sep 2023 08:52:18 +0000 (+0200) Subject: guix: use cross-* keyword arguments X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=f583179d0eb5ec7f5e07bd550cf5e417df2bcac0;p=gamesguru%2Ffeather.git guix: use cross-* keyword arguments Based on Bitcoin PR #28328 --- diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index 1c277aed..97c8738b 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -93,16 +93,16 @@ FILE-NAME found in ./patches relative to the current file." ;; 2. Build cross-compiled kernel headers with XGCC-SANS-LIBC, derived ;; from BASE-KERNEL-HEADERS (xkernel (cross-kernel-headers target - base-kernel-headers - xgcc-sans-libc - xbinutils)) + #:linux-headers base-kernel-headers + #:xgcc xgcc-sans-libc + #:xbinutils xbinutils)) ;; 3. Build a cross-compiled libc with XGCC-SANS-LIBC and XKERNEL, ;; derived from BASE-LIBC (xlibc (cross-libc target - base-libc - xgcc-sans-libc - xbinutils - xkernel)) + #:libc base-libc + #:xgcc xgcc-sans-libc + #:xbinutils xbinutils + #:xheaders xkernel)) ;; 4. Build a cross-compiling gcc targeting XLIBC, derived from ;; BASE-GCC (xgcc (cross-gcc target