mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03: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:
@ -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):
|
||||
|
Reference in New Issue
Block a user