diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-02-22 09:39:14 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-02-22 09:39:14 +0100 |
commit | 418f5783d987ed13fee217d8aad47b8b23b28a87 (patch) | |
tree | 3e48c763b0209ba5ceaf0035eaefd61fb2abe544 /scripts | |
parent | e9e7f24543e6d1b0a31641f144697e261df6ccd7 (diff) | |
download | glibc-418f5783d987ed13fee217d8aad47b8b23b28a87.tar glibc-418f5783d987ed13fee217d8aad47b8b23b28a87.tar.gz glibc-418f5783d987ed13fee217d8aad47b8b23b28a87.tar.bz2 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-x | scripts/build-many-glibcs.py | 2 |
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): |