diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:16:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:16:50 +0200 |
commit | 6b06c5dc0f6a8e33ca0fbe98fd36522ca6f3432d (patch) | |
tree | 3cd8b3b24a86484a92a5be76ddfeb995725530da /libbuild2/b-options.hxx | |
parent | 6b9dbfaaf2b3dfdf3627b57c7f15c6a3cd105f35 (diff) |
Add ability to disable diagnostics buffering (--no-diag-buffer)
Diffstat (limited to 'libbuild2/b-options.hxx')
-rw-r--r-- | libbuild2/b-options.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbuild2/b-options.hxx b/libbuild2/b-options.hxx index 2780a8d..4e85192 100644 --- a/libbuild2/b-options.hxx +++ b/libbuild2/b-options.hxx @@ -141,6 +141,9 @@ namespace build2 dry_run () const; const bool& + no_diag_buffer () const; + + const bool& match_only () const; const bool& @@ -275,6 +278,7 @@ namespace build2 bool max_stack_specified_; bool serial_stop_; bool dry_run_; + bool no_diag_buffer_; bool match_only_; bool no_external_modules_; structured_result_format structured_result_; |