Mercurial > lcfOS
comparison python/zcc.py @ 336:d1ecc493384e
Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
author | Windel Bouwman |
---|---|
date | Wed, 19 Feb 2014 22:32:15 +0100 |
parents | 6f4753202b9a |
children | 86b02c98a717 |
comparison
equal
deleted
inserted
replaced
335:582a1aaa3983 | 336:d1ecc493384e |
---|---|
95 inputs = value['inputs'] | 95 inputs = value['inputs'] |
96 objs = [] | 96 objs = [] |
97 for i in inputs: | 97 for i in inputs: |
98 task = self.load_dict(i) | 98 task = self.load_dict(i) |
99 objs.append(task.output) | 99 objs.append(task.output) |
100 self.runner.add_task(Link(objs, None)) | 100 layout = value['layout'] |
101 output = self.relpath(value['output']) | |
102 self.runner.add_task(Link(objs, layout, output)) | |
101 | 103 |
102 def handle_apps(self, value): | 104 def handle_apps(self, value): |
103 for a in value: | 105 for a in value: |
104 self.load_dict(a) | 106 self.load_dict(a) |
105 | 107 |