Up

Module Config

Signature

module Gc : sig .. end
type t = {
j_number
: int ;
f_number
: int ;
d_number
: int ;
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_buildable_discovery
: 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.Std.Time.Span.t option ;
progress
: [
| `jem_style
| `omake_style
] option
;
dont_emit_kill_line
: bool ;
path_to_jenga_conf
: string option ;
brief_error_summary
: bool ;
no_server
: bool ;
demands
: string list ;
no_notifiers
: bool ;
no_fs_triggers
: bool ;
sandbox_actions
: bool ;
deprecated_camlp4
: bool ;
buildable_targets_fixpoint_max
: int ;
gc
: Gc.t ;
}
val gc : t -> Gc.t
val buildable_targets_fixpoint_max : t -> int
val deprecated_camlp4 : t -> bool
val sandbox_actions : t -> bool
val no_fs_triggers : t -> bool
val no_notifiers : t -> bool
val demands : t -> string list
val no_server : t -> bool
val brief_error_summary : t -> bool
val path_to_jenga_conf : t -> string option
val dont_emit_kill_line : t -> bool
val progress : t -> [
| `jem_style
| `omake_style
] option
val report_long_cycle_times : t -> Core.Std.Time.Span.t option
val prefix_time : t -> bool
val show_error_dependency_paths : t -> bool
val show_trace_messages : t -> bool
val show_reconsidering : t -> bool
val show_considering : t -> bool
val show_reflecting : t -> bool
val show_buildable_discovery : t -> bool
val show_checked : t -> bool
val show_actions_run_verbose : t -> bool
val show_actions_run : t -> bool
val show_memory_allocations : t -> bool
val verbose : t -> bool
val poll_forever : t -> bool
val stop_on_first_error : t -> bool
val d_number : t -> int
val f_number : t -> int
val j_number : t -> int
module Fields : sig .. end