summaryrefslogtreecommitdiff
path: root/src/task_so.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2025-01-06 17:48:19 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2025-01-06 17:48:19 +0100
commit05a15ed660f8b43c85242fed1a863853e8c749b3 (patch)
tree2aaec389e043cf20637ce8a9d7d3ac394dae836e /src/task_so.cc
parent78c5477b3989d67169de2d05665adfb801caab23 (diff)
Reduce chance of lines being cut and mixed up when printing from the task threads.
Diffstat (limited to 'src/task_so.cc')
-rw-r--r--src/task_so.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/task_so.cc b/src/task_so.cc
index 75b5f3c..eecd7aa 100644
--- a/src/task_so.cc
+++ b/src/task_so.cc
@@ -110,7 +110,8 @@ int TaskSO::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();