diff options
author | fanquake <fanquake@gmail.com> | 2023-08-22 15:57:23 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-08-24 09:21:49 +0100 |
commit | 1f6c75e82bc97ff08e444f2b0569289e96a42356 (patch) | |
tree | fa79b8da1061ee3fa8fd8921da2d7f8ca4a9d9cf /contrib/guix | |
parent | ea4387e1d074632d63a25660990d44cae74665b0 (diff) |
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
```
Diffstat (limited to 'contrib/guix')
-rw-r--r-- | contrib/guix/manifest.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index 38cf0b1c1a..94ed31ff6d 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -57,16 +57,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 |