mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: rust@1.19.0: Install libtest.
* gnu/packages/rust.scm (rust-1.19)[arguments]<#:phases>[build]: Build libtest.
This commit is contained in:
parent
4a90fcf9e7
commit
6c1a658414
1 changed files with 9 additions and 1 deletions
|
@ -411,6 +411,8 @@ test = { path = \"../libtest\" }
|
|||
"output/rustc-build/rustc"
|
||||
"-C" (string-append "linker="
|
||||
(getenv "CC"))
|
||||
;; Required for libterm.
|
||||
"-Z" "force-unstable-if-unmarked"
|
||||
"-L" "output/target-libs"
|
||||
(string-append "src/" name "/lib.rs")
|
||||
"-o"
|
||||
|
@ -430,7 +432,13 @@ test = { path = \"../libtest\" }
|
|||
("libpanic_unwind")
|
||||
;; Uses "cc" to link.
|
||||
("libstd" "-l" "dl" "-l" "rt" "-l" "pthread")
|
||||
("libarena")))
|
||||
("libarena")
|
||||
|
||||
;; Test dependencies:
|
||||
|
||||
("libgetopts")
|
||||
("libterm")
|
||||
("libtest")))
|
||||
#t)))
|
||||
;; This phase is overridden by newer versions.
|
||||
(replace 'check
|
||||
|
|
Loading…
Reference in a new issue