From 24f74ea70a19ccd7bcb489853fc73a972ab8638f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 27 Jul 2017 02:30:09 +0300 Subject: Fix to print to diagnostics stream instead of std::cerr --- build2/cc/compile.cxx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'build2/cc/compile.cxx') diff --git a/build2/cc/compile.cxx b/build2/cc/compile.cxx index b65cee7..805ad82 100644 --- a/build2/cc/compile.cxx +++ b/build2/cc/compile.cxx @@ -5,8 +5,6 @@ #include #include // exit() -#include // cerr - #include #include #include @@ -2240,13 +2238,13 @@ namespace build2 // we need to copy the diagnostics for the user to see. // // Note that the eof check is important: if the stream is at - // eof, this and all subsequent writes to cerr will fail (and - // you won't see a thing). + // eof, this and all subsequent writes to the diagnostics stream + // will fail (and you won't see a thing). // if (bad_error && cid == compiler_id::msvc && is.peek () != ifdstream::traits_type::eof ()) - cerr << is.rdbuf (); + diag_stream_lock () << is.rdbuf (); is.close (); @@ -3721,11 +3719,11 @@ namespace build2 // If anything remains in the stream, send it all to stderr. Note // that the eof check is important: if the stream is at eof, this - // and all subsequent writes to cerr will fail (and you won't see - // a thing). + // and all subsequent writes to the diagnostics stream will fail + // (and you won't see a thing). // if (is.peek () != ifdstream::traits_type::eof ()) - cerr << is.rdbuf (); + diag_stream_lock () << is.rdbuf (); is.close (); } -- cgit v1.1