mirror of https://github.com/ARMmbed/mbed-os.git
Added verbose option to build_release.py
parent
152b58673f
commit
9b366ee801
|
@ -59,6 +59,8 @@ if __name__ == '__main__':
|
|||
parser = OptionParser()
|
||||
parser.add_option('-o', '--official', dest="official_only", default=False, action="store_true",
|
||||
help="Build using only the official toolchain for each target")
|
||||
parser.add_option("-v", "--verbose", action="store_true", dest="verbose",
|
||||
default=False, help="Verbose diagnostic output")
|
||||
options, args = parser.parse_args()
|
||||
start = time()
|
||||
failures = []
|
||||
|
@ -71,7 +73,7 @@ if __name__ == '__main__':
|
|||
for toolchain in toolchains:
|
||||
id = "%s::%s" % (target_name, toolchain)
|
||||
try:
|
||||
build_mbed_libs(TARGET_MAP[target_name], toolchain)
|
||||
build_mbed_libs(TARGET_MAP[target_name], toolchain, verbose=options.verbose)
|
||||
successes.append(id)
|
||||
except Exception, e:
|
||||
failures.append(id)
|
||||
|
|
Loading…
Reference in New Issue