summaryrefslogtreecommitdiff
path: root/tools/buildman/builder.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-12-01 17:34:07 -0700
committerSimon Glass <sjg@chromium.org>2015-01-14 21:16:54 -0800
commitd2ce658de527af4eaa193ccb7c4d881e02a31257 (patch)
tree190ac2823919ddc859631a21f677f4d4b8e781ff /tools/buildman/builder.py
parent827e37b55869933951e7e7db3693d4df001fd609 (diff)
downloadu-boot-imx-d2ce658de527af4eaa193ccb7c4d881e02a31257.zip
u-boot-imx-d2ce658de527af4eaa193ccb7c4d881e02a31257.tar.gz
u-boot-imx-d2ce658de527af4eaa193ccb7c4d881e02a31257.tar.bz2
buildman: Add an option to write the full build output
Normally buildman runs with 'make -s' meaning that only errors and warnings appear in the log file. Add a -V option to run make in verbose mode, and with V=1, causing a full build log to be created. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builder.py')
-rw-r--r--tools/buildman/builder.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py
index 93d048b..1b0ad99 100644
--- a/tools/buildman/builder.py
+++ b/tools/buildman/builder.py
@@ -175,7 +175,7 @@ class Builder:
def __init__(self, toolchains, base_dir, git_dir, num_threads, num_jobs,
gnu_make='make', checkout=True, show_unknown=True, step=1,
- no_subdirs=False, full_path=False):
+ no_subdirs=False, full_path=False, verbose_build=False):
"""Create a new Builder object
Args:
@@ -193,6 +193,7 @@ class Builder:
source for a single board
full_path: Return the full path in CROSS_COMPILE and don't set
PATH
+ verbose_build: Run build with V=1 and don't use 'make -s'
"""
self.toolchains = toolchains
self.base_dir = base_dir
@@ -220,6 +221,7 @@ class Builder:
self._error_lines = 0
self.no_subdirs = no_subdirs
self.full_path = full_path
+ self.verbose_build = verbose_build
self.col = terminal.Color()