The representation of the various command line options. Further configuration (not exposed to casual users) is in jenga_options.ml.
module Gc : sig ... endtype t = {j_number : int; |
f_number : int; |
d_number : int; |
tenacious_concurrency : int option; |
stop_on_first_error : bool; |
poll_forever : bool; |
verbose : bool; |
show_memory_allocations : bool; |
show_actions_run : bool; |
show_actions_run_verbose : bool; |
show_checked : bool; |
show_reflecting : bool; |
show_considering : bool; |
show_reconsidering : bool; |
show_trace_messages : bool; |
show_error_dependency_paths : bool; |
prefix_time : bool; |
report_long_cycle_times : Core.Time.Span.t option; |
progress : bool; |
dont_emit_kill_line : bool; |
path_to_jenga_conf : string option; |
brief_error_summary : bool; |
no_server : bool; |
goals : string list; |
no_notifiers : bool; |
no_fs_triggers : bool; |
sandbox_actions : Db.Sandbox_kind.t; |
gc : Gc.t; |
}val sandbox_actions : t ‑> Db.Sandbox_kind.tval no_fs_triggers : t ‑> boolval no_notifiers : t ‑> boolval goals : t ‑> string listval no_server : t ‑> boolval brief_error_summary : t ‑> boolval path_to_jenga_conf : t ‑> string optionval dont_emit_kill_line : t ‑> boolval progress : t ‑> boolval report_long_cycle_times : t ‑> Core.Time.Span.t optionval prefix_time : t ‑> boolval show_error_dependency_paths : t ‑> boolval show_trace_messages : t ‑> boolval show_reconsidering : t ‑> boolval show_considering : t ‑> boolval show_reflecting : t ‑> boolval show_checked : t ‑> boolval show_actions_run_verbose : t ‑> boolval show_actions_run : t ‑> boolval show_memory_allocations : t ‑> boolval verbose : t ‑> boolval poll_forever : t ‑> boolval stop_on_first_error : t ‑> boolval tenacious_concurrency : t ‑> int optionval d_number : t ‑> intval f_number : t ‑> intval j_number : t ‑> intmodule Fields : sig ... end