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 7a7c14e commit 17471eaCopy full SHA for 17471ea
workspace_tools/targets.py
@@ -175,10 +175,10 @@ def __init__(self):
175
def init_hooks(self, hook, toolchain_name):
176
if toolchain_name in ['ARM_STD', 'ARM_MICRO']:
177
hook.hook_add_binary("post", self.binary_hook)
178
- hook.hook_cmdline_linker(self.cmdline_hook)
+ hook.hook_cmdline_linker(self.link_cmdline_hook)
179
180
@staticmethod
181
- def cmdline_hook(toolchain, cmdline):
+ def link_cmdline_hook(toolchain, cmdline):
182
return cmdline + ["--any_placement=first_fit"]
183
184
0 commit comments