mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: spike: Substitute path to dtc instead of wrapping executables.
* gnu/packages/virtualization.scm (spike)[arguments]: Delete the wrap-binary phase. Add a configure-dtc-path phase that substitutes the absolute path to dtc. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
dda555fead
commit
9afad0c16e
1 changed files with 7 additions and 9 deletions
|
@ -26,6 +26,7 @@
|
|||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||
;;; Copyright © 2022 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2022 Ekaitz Zarraga <ekaitz@elenq.tech>
|
||||
;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1037,15 +1038,12 @@ (define-public spike
|
|||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'wrap-binary
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(for-each
|
||||
(lambda (file)
|
||||
(wrap-program file
|
||||
`("PATH" ":" prefix
|
||||
(,(dirname (search-input-file inputs "/bin/dtc"))))))
|
||||
(find-files (string-append out "/bin")))))))))
|
||||
(add-before 'configure 'configure-dtc-path
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Reference dtc by its absolute store path.
|
||||
(substitute* "riscv/dts.cc"
|
||||
(("DTC")
|
||||
(string-append "\"" (search-input-file inputs "/bin/dtc") "\""))))))))
|
||||
(inputs
|
||||
(list bash-minimal dtc))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue