public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] build-many-glibcs.py: Use make -O for more consistent log output
@ 2021-02-22  8:38 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2021-02-22  8:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=418f5783d987ed13fee217d8aad47b8b23b28a87

commit 418f5783d987ed13fee217d8aad47b8b23b28a87
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 22 09:39:14 2021 +0100

    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.

Diff:
---
 scripts/build-many-glibcs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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):


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-22  8:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22  8:38 [glibc] build-many-glibcs.py: Use make -O for more consistent log output Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).