Skip to content

Commit 1f6c75e

Browse files
committed
guix: use cross-* keyword arguments
Using the new time-machine results in warnings about consistently using keyword arguments: ```bash guix environment: warning: 'cross-kernel-headers' must be used with keyword arguments guix environment: warning: 'cross-libc' must be used with keyword arguments ```
1 parent ea4387e commit 1f6c75e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

contrib/guix/manifest.scm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ FILE-NAME found in ./patches relative to the current file."
5757
;; 2. Build cross-compiled kernel headers with XGCC-SANS-LIBC, derived
5858
;; from BASE-KERNEL-HEADERS
5959
(xkernel (cross-kernel-headers target
60-
base-kernel-headers
61-
xgcc-sans-libc
62-
xbinutils))
60+
#:linux-headers base-kernel-headers
61+
#:xgcc xgcc-sans-libc
62+
#:xbinutils xbinutils))
6363
;; 3. Build a cross-compiled libc with XGCC-SANS-LIBC and XKERNEL,
6464
;; derived from BASE-LIBC
6565
(xlibc (cross-libc target
66-
base-libc
67-
xgcc-sans-libc
68-
xbinutils
69-
xkernel))
66+
#:libc base-libc
67+
#:xgcc xgcc-sans-libc
68+
#:xbinutils xbinutils
69+
#:xheaders xkernel))
7070
;; 4. Build a cross-compiling gcc targeting XLIBC, derived from
7171
;; BASE-GCC
7272
(xgcc (cross-gcc target

0 commit comments

Comments
 (0)