|
NAMEdune-config - configuring the dune build systemSYNOPSIS~/.config/dune/config DESCRIPTIONUnless --no-config or -p is passed, Dune will read a configuration file from the user home directory. This file is used to control various aspects of the behavior of Dune.The configuration file is normally ~/.config/dune/config on Unix systems and Local Settings/dune/config in the User home directory on Windows. However, it is possible to specify an alternative configuration file with the --config-file option. The first line of the file must be of the form (lang dune X.Y) where X.Y is the version of the dune language used in the file. The rest of the file must be written in S-expression syntax and be composed of a list of stanzas. The following sections describe the stanzas available. DISPLAY MODESSyntax: (display MODE)This stanza controls how Dune reports what it is doing to the user. This parameter can also be set from the command line via --display MODE. The following display modes are available:
Note that when the selected display mode is progress and the output is not a terminal then the quiet mode is selected instead. This rule doesn't apply when running Dune inside Emacs. Dune detects whether it is executed from inside Emacs or not by looking at the environment variable INSIDE_EMACS that is set by Emacs. If you want the same behavior with another editor, you can set this variable. If your editor already sets another variable, please open a ticket on the ocaml/dune github project so that we can add support for it. JOBSSyntax: (jobs NUMBER)Set the maximum number of jobs Dune might run in parallel. This can also be set from the command line via -j NUMBER. The default for this value is 4. BUGSCheck bug reports at https://github.com/ocaml/dune/issues
Visit the GSP FreeBSD Man Page Interface. |