mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-26 10:25:19 +01:00
Merge branch 'fix-compcert' into 'master'
nongnu: compcert: Fix a non-exhaustive match. See merge request nonguix/nonguix!22
This commit is contained in:
commit
40b62f7aaf
1 changed files with 4 additions and 2 deletions
|
@ -43,9 +43,9 @@
|
|||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((system ,(match (or (%current-target-system) (%current-system))
|
||||
("x86_64-linux" "x86_64-linux")
|
||||
("armhf-linux" "arm-eabihf")
|
||||
("i686-linux" "x86_32-linux")
|
||||
("armhf-linux" "arm-linux"))))
|
||||
(s s))))
|
||||
(format #t "Building for ~a~%" system)
|
||||
(invoke "./configure" system "-prefix"
|
||||
(assoc-ref outputs "out")))
|
||||
|
@ -62,6 +62,8 @@
|
|||
(find-files "." ".*.vo$"))
|
||||
#t)))
|
||||
#:tests? #f))
|
||||
;; MIPS is not supported.
|
||||
(supported-systems (delete "mips64el-linux" %supported-systems))
|
||||
(native-inputs
|
||||
`(("ocaml" ,ocaml)
|
||||
("ocaml-findlib" ,ocaml-findlib); for menhir --suggest-menhirlib
|
||||
|
|
Loading…
Reference in a new issue