1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-10 07:00:37 +02:00

gnu: camlp4: Compile native version.

* gnu/packages/ocaml.scm (camlp4)[arguments]: Disable parallel-build.
  Change default target to "all" to compile native and byte version.

Signed-off-by: David Craven <david@craven.ch>
This commit is contained in:
Julien Lepiller
2016-12-31 12:42:10 +01:00
committed by David Craven
parent 2b1f7b83f7
commit e0ddaa8be3

View File

@@ -238,6 +238,10 @@ Git-friendly development workflow.")
(inputs `(("ocaml" ,ocaml)))
(arguments
'(#:tests? #f ;no documented test target
;; a race-condition will lead byte and native targets to mkdir _build
;; which fails on the second attempt.
#:parallel-build? #f
#:make-flags '("all")
#:phases (modify-phases %standard-phases
(replace
'configure