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.
2 parents ff1a0ed + 2516737 commit 27f3fd9Copy full SHA for 27f3fd9
tools/export/embitz/__init__.py
@@ -64,17 +64,13 @@ def generate(self):
64
l, _ = splitext(basename(lib))
65
libraries.append(l[3:])
66
67
-
68
- if self.resources.linker_script is None:
69
- self.resources.linker_script = ''
70
71
ctx = {
72
'name': self.project_name,
73
'target': self.target,
74
'toolchain': self.toolchain.name,
75
'source_files': source_files,
76
'include_paths': self.resources.inc_dirs,
77
- 'script_file': self.resources.linker_script,
+ 'script_file': self.resources.linker_script or '',
78
'library_paths': self.resources.lib_dirs,
79
'libraries': libraries,
80
'symbols': self.toolchain.get_symbols(),
0 commit comments