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/context.cxx | |
parent | 6b9dbfaaf2b3dfdf3627b57c7f15c6a3cd105f35 (diff) |
Add ability to disable diagnostics buffering (--no-diag-buffer)
Diffstat (limited to 'libbuild2/context.cxx')
-rw-r--r-- | libbuild2/context.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index e44a688..0108d27 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -67,6 +67,7 @@ namespace build2 bool mo, bool nem, bool dr, + bool ndb, bool kg, const strings& cmd_vars, optional<context*> mc, @@ -78,6 +79,7 @@ namespace build2 match_only (mo), no_external_modules (nem), dry_run_option (dr), + no_diag_buffer (ndb), keep_going (kg), phase_mutex (*this), scopes (data_->scopes), |