diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-02-01 12:33:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-02-01 12:33:28 +0200 |
commit | c5000dcc375229ff42727f090d4243107d3a04a6 (patch) | |
tree | 39a2514f37e4064eb7a01f9fb325f6a0f27c7d52 /gnu/packages/commencement.scm | |
parent | 73d93343baa43733bf1fecc23bcb1f36a78ef615 (diff) |
gnu: %final-inputs-riscv64: Add comment.
* gnu/packages/commencement.scm (%final-inputs-riscv64): Add comment
explaining why this variable needs to exist.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 96d914344d..3fb4b2054f 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3737,6 +3737,15 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" ("locales" ,glibc-utf8-locales-final)))) (define-public %final-inputs-riscv64 + ;; This is similar to the added (list gcc "lib") elsewhere in this file, but + ;; due to how (%current-system) is re-defined when performing builds with the + ;; '--system' flag, %final-inputs is too early in the evaulation pipeline to + ;; correctly identify the system for which a derivation will be built. Thus, + ;; since (%current-system) is re-determined by (guix build-system gnu) after + ;; loading %final-inputs but before taking into account the '--system' flag, + ;; the test for (target-riscv64?) needs to be in (guix build-system gnu), + ;; with %final-inputs-riscv64 already available at the same time that + ;; %final-inputs is available. `(("gcc:lib" ,gcc-final "lib") ,@%final-inputs)) |