We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c809e commit 142e014Copy full SHA for 142e014
tools/export/gccarm.py
@@ -161,10 +161,11 @@ def generate(self):
161
'libraries': libraries,
162
'symbols': self.get_symbols(),
163
'cpu_flags': self.toolchain.cpu,
164
- 'vpath': [relpath(s, build_dir) for s in self.prj_paths] if self.sources_relative else [".."]
+ 'vpath': [relpath(s, build_dir) for s in self.prj_paths] if self.sources_relative else [".."],
165
+ 'hex_files': self.resources.hex_files
166
}
167
- for key in ['include_paths', 'library_paths', 'linker_script']:
168
+ for key in ['include_paths', 'library_paths', 'linker_script', 'hex_files']:
169
if isinstance(ctx[key], list):
170
ctx[key] = [ctx['vpath'][0] + "/" + t for t in ctx[key]]
171
else:
0 commit comments