diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-06 17:48:19 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-06 17:48:19 +0100 |
commit | 05a15ed660f8b43c85242fed1a863853e8c749b3 (patch) | |
tree | 2aaec389e043cf20637ce8a9d7d3ac394dae836e /src/task_ld.cc | |
parent | 78c5477b3989d67169de2d05665adfb801caab23 (diff) |
Reduce chance of lines being cut and mixed up when printing from the task threads.
Diffstat (limited to 'src/task_ld.cc')
-rw-r--r-- | src/task_ld.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/task_ld.cc b/src/task_ld.cc index c8cd1ea..31ee8c0 100644 --- a/src/task_ld.cc +++ b/src/task_ld.cc @@ -123,7 +123,8 @@ int TaskLD::runInner() if(settings.verbose == 0) { - std::cout << "LD => " << targetFile().string() << std::endl; + std::string output = "LD => " + targetFile().string() + '\n'; + std::cout << output << std::flush; } auto tool = compiler(); |