glv pushed a commit to branch master
in repository guix.
commit 90e92befbc8379b90ef58e4bbde975ba5a99d88c
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Fri Oct 15 11:12:52 2021 +0200
gnu: janet: Prepare for cross-compilation.
* gnu/packages/lisp.scm (janet)[arguments]: Use 'cc-for-target'. Replace
custom 'check' phase by 'test-target' parameter.
---
gnu/packages/lisp.scm | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index f81e55f..6e1b9c0 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1172,14 +1172,11 @@ including a built-in database engine and a GUI system.")
(list
(string-append "DESTDIR=" (assoc-ref %outputs "out"))
(string-append "PREFIX=")
- (string-append "CC=" (assoc-ref %build-inputs "gcc")
- "/bin/gcc"))
+ (string-append "CC=" ,(cc-for-target)))
+ #:test-target "test"
#:phases
(modify-phases %standard-phases
- (delete 'configure)
- (replace 'check
- (lambda _
- (invoke "make" "test"))))))
+ (delete 'configure))))
(home-page "https://janet-lang.org/")
(synopsis "Functional, imperative and embeddable programming language")
(description