added LPC1347 in export_text.py

pull/593/head
GustavWi 2014-10-17 16:02:40 +02:00 committed by 0xc0170
parent 2d0e67cf6e
commit 05145251f0
3 changed files with 3 additions and 0 deletions

View File

@ -209,6 +209,7 @@ if __name__ == '__main__':
lib_build_res = build_mbed_libs(mcu, toolchain, options=options.options,
notify=notify, verbose=options.verbose, jobs=options.jobs, clean=options.clean,
macros=options.macros)
for lib_id in libraries:
notify = print_notify_verbose if options.extra_verbose_notify else None # Special notify for CI (more verbose)
build_lib(lib_id, mcu, toolchain, options=options.options,

View File

@ -159,6 +159,7 @@ if __name__ == '__main__':
('iar', 'LPC1768'),
('iar', 'NUCLEO_F411RE'),
('iar', 'LPC1347'),
(None, None),
]:

View File

@ -481,6 +481,7 @@ class mbedToolchain:
def compile_seq(self, queue, objects):
for item in queue:
result = compile_worker(item)
self.compiled += 1
self.progress("compile", item['source'], build_update=True)
for res in result['results']: