Mercurial > lcfOS
comparison python/ppci/buildtasks.py @ 354:5477e499b039
Added some sort of string functionality
author | Windel Bouwman |
---|---|
date | Thu, 13 Mar 2014 18:59:06 +0100 |
parents | 442fb043d149 |
children | 39bf68bf1891 |
comparison
equal
deleted
inserted
replaced
353:b8ad45b3a573 | 354:5477e499b039 |
---|---|
55 c3b = Builder(diag, self.target) | 55 c3b = Builder(diag, self.target) |
56 cg = CodeGenerator(self.target) | 56 cg = CodeGenerator(self.target) |
57 | 57 |
58 for ircode in c3b.build(self.sources, self.includes): | 58 for ircode in c3b.build(self.sources, self.includes): |
59 if not ircode: | 59 if not ircode: |
60 return | 60 # Something went wrong, do not continue the code generation |
61 continue | |
61 | 62 |
62 d = {'ircode':ircode} | 63 d = {'ircode':ircode} |
63 self.logger.debug('Verifying code {}'.format(ircode), extra=d) | 64 self.logger.debug('Verifying code {}'.format(ircode), extra=d) |
64 Verifier().verify(ircode) | 65 Verifier().verify(ircode) |
65 | 66 |