From 90e92befbc8379b90ef58e4bbde975ba5a99d88c Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Fri, 15 Oct 2021 11:12:52 +0200 Subject: 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 f81e55faaf..6e1b9c0244 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 -- cgit v1.2.3