diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 11:00:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 11:00:47 +0200 |
commit | 72e9ec3d7028765836851b515d80816f2da74060 (patch) | |
tree | c3aea51139b9e0a071455b83a5ab067542a7e839 /libbuild2/utility.cxx | |
parent | 1c08fae61a1e9a01d56735768ad7f8f3d0b45f41 (diff) |
Initial work on child process diagnostics buffering
Currently this is implemented for C/C++ compile and link rules.
Diffstat (limited to 'libbuild2/utility.cxx')
-rw-r--r-- | libbuild2/utility.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/utility.cxx b/libbuild2/utility.cxx index 3eeeeaa..e73cd61 100644 --- a/libbuild2/utility.cxx +++ b/libbuild2/utility.cxx @@ -281,6 +281,8 @@ namespace build2 if (pr.wait ()) return true; + // Note: see similar code in diag_buffer::close/finish(). + // const process_exit& e (*pr.exit); if (!e.normal ()) |