mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
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.
This commit is contained in:
parent
e9e7f24543
commit
418f5783d9
@ -670,7 +670,7 @@ class Context(object):
|
|||||||
|
|
||||||
def do_build(self):
|
def do_build(self):
|
||||||
"""Do the actual build."""
|
"""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)
|
subprocess.run(cmd, cwd=self.builddir, check=True)
|
||||||
|
|
||||||
def build_host_libraries(self):
|
def build_host_libraries(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user