1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: wllvm: Refer to binutils and file by path.

Without these dependencies, wllvm cannot compile any code.

* gnu/packages/llvm.scm (wllvm)[inputs]: Add binutils and file.
[arguments]: Add 'fix-paths phase.

Change-Id: I5727e55b889f8cebb1a8b20c5f1fce545b252e77
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Sören Tempel
2025-09-07 12:47:34 +02:00
committed by Andreas Enge
parent e26bb1ecc0
commit 632ea2db98

View File

@@ -68,6 +68,7 @@
#:use-module (gnu packages bootstrap) ;glibc-dynamic-linker
#:use-module (gnu packages check) ;python-lit
#:use-module (gnu packages compression)
#:use-module (gnu packages file)
#:use-module (gnu packages libedit)
#:use-module (gnu packages libffi)
#:use-module (gnu packages linux)
@@ -1842,6 +1843,25 @@ LLVM."))))
(sha256
(base32 "0cf31hixzq5bzkxv91rvadlhrpxzy934134scv4frj85bxbpl19y"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-paths
(lambda* (#:key inputs #:allow-other-keys)
(let ((pystr (lambda (s) (string-append "'" s "'"))))
(substitute* "wllvm/compilers.py"
(("'objcopy'")
(pystr (search-input-file inputs "/bin/objcopy"))))
(substitute* "wllvm/extraction.py"
(("'objdump'")
(pystr (search-input-file inputs "/bin/objdump")))
(("'ar'")
(pystr (search-input-file inputs "/bin/ar"))))
(substitute* "wllvm/filetype.py"
(("'file'")
(pystr (search-input-file inputs "/bin/file"))))))))))
(inputs (list binutils file))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/SRI-CSL/whole-program-llvm")
(synopsis "Whole Program LLVM")