diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-04 11:49:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-04 11:49:30 -0400 |
commit | 7f30eec1779b8f641b9563a1dab6a6865916ec01 (patch) | |
tree | 9d0b296416d6820d45cfa24bdebe1ef81ef44b1c /tools/buildman/builderthread.py | |
parent | bfce695104d59a8570ce0a7cbd75d3728117eb5d (diff) | |
parent | 0d734df4a459f01fdf1e62512fb28b28022cb6a9 (diff) |
Merge branch '2023-05-03-assorted-updates-and-fixes'
- Various typo fixes, pass -Werror to host tools builds, bdi cleanups,
fix hush and local variables, a FSL PCI fix and correct some python in
one of the tests.
Diffstat (limited to 'tools/buildman/builderthread.py')
-rw-r--r-- | tools/buildman/builderthread.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index 879ff138ad7..635865c21c8 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -253,6 +253,7 @@ class BuilderThread(threading.Thread): args.extend(['-j', str(self.builder.num_jobs)]) if self.builder.warnings_as_errors: args.append('KCFLAGS=-Werror') + args.append('HOSTCFLAGS=-Werror') if self.builder.allow_missing: args.append('BINMAN_ALLOW_MISSING=1') if self.builder.no_lto: |