summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-02-22 09:39:14 +0100
committerFlorian Weimer <fweimer@redhat.com>2021-02-22 09:39:14 +0100
commit418f5783d987ed13fee217d8aad47b8b23b28a87 (patch)
tree3e48c763b0209ba5ceaf0035eaefd61fb2abe544 /scripts
parente9e7f24543e6d1b0a31641f144697e261df6ccd7 (diff)
downloadglibc-418f5783d987ed13fee217d8aad47b8b23b28a87.tar.gz
glibc-418f5783d987ed13fee217d8aad47b8b23b28a87.tar.xz
glibc-418f5783d987ed13fee217d8aad47b8b23b28a87.zip
build-many-glibcs.py: Use make -O for more consistent log output
The -O option avoids interleaving (e.g.) compiler error messages
with other build messages, and makes attribution of messages to
commands easier.

According to my tests, the impact on build time is within the noise.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 071f338cbb..8d97320f6d 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -670,7 +670,7 @@ class Context(object):
 
     def do_build(self):
         """Do the actual build."""
-        cmd = ['make', '-j%d' % self.parallelism]
+        cmd = ['make', '-O', '-j%d' % self.parallelism]
         subprocess.run(cmd, cwd=self.builddir, check=True)
 
     def build_host_libraries(self):