When running dune build I get the following output
$ dune build
[...]
binary ocaml: found in /home/reynir/.opam/4.10.1/bin
binary ocamlc: found in /home/reynir/.opam/4.10.1/bin
binary ocamldep: found in /home/reynir/.opam/4.10.1/bin
binary ocamlmklib: found in /home/reynir/.opam/4.10.1/bin
binary ocamldoc: found in /home/reynir/.opam/4.10.1/bin
binary gcc: found in /usr/bin
binary ocamlopt: found in /home/reynir/.opam/4.10.1/bin
checking compilation with gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC : working
include caml/mlvalues.h: found
library dynlink.cmxa: found
binary ocamlfind: found in /home/reynir/.opam/4.10.1/bin
OCaml's word size is 64
binary uname: found in /usr/bin
include gmp.h: found
library gmp: found
OCaml supports -bin-annot to produce documentation
detected configuration:
native-code: yes
dynamic linking: yes
defines: -DHAS_GMP
libraries: -lgmp
C options:
installation path: /home/reynir/.opam/4.10.1/lib
installation method findlib
configuration successful!
now type "make" to build
then type "make install" or "sudo make install" to install
it's especially confusing when running make when building a mirage unikernel to get this message. Perhaps it's enough to redirect the output:
|
(rule |
|
(target Makefile) |
|
(deps configure config.guess env) |
|
(action |
|
(bash |
|
"env %{read:env} ./configure --ocamllibdir %{ocaml-config:standard_library}"))) |
When running dune build I get the following output
it's especially confusing when running
makewhen building a mirage unikernel to get this message. Perhaps it's enough to redirect the output:Zarith/dune
Lines 24 to 29 in f9f300a