Skip to content
Snippets Groups Projects
Verified Commit 1f3ac232 authored by FARGES Olivier's avatar FARGES Olivier
Browse files

debug star-3d

parent c5bfa2da
Branches
No related tags found
No related merge requests found
......@@ -38,14 +38,20 @@
gnu-make rsys embree-edix
))
(arguments
`(#:make-flags (list (string-append "CC=gcc" ))
`(#:make-flags '("CC=gcc")
; `(#:make-flags (list (string-append "CC=gcc" ))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(delete 'check)
;(replace 'build
; (lambda* (#:key make-flags #:allow-other-keys)
; (invoke "make" (string-join make-flags " "))))
; (replace 'build
; (lambda* (#:key make-flags #:allow-other-keys)
; (invoke "make" (string-join make-flags " "))))
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(begin
(format #t "Running: make ~a~%" make-flags)
(apply invoke "make" make-flags))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment