From 17471ea8edac49a83c91e61642f423293b197d98 Mon Sep 17 00:00:00 2001 From: Bogdan Marinescu Date: Mon, 9 Dec 2013 15:39:41 +0200 Subject: [PATCH] Changed name of LPC4088 cmdline hook function For compatibility with the on-line build system --- workspace_tools/targets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index f429ebafc6..26eaf98ceb 100644 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -175,10 +175,10 @@ class LPC4088(Target): def init_hooks(self, hook, toolchain_name): if toolchain_name in ['ARM_STD', 'ARM_MICRO']: hook.hook_add_binary("post", self.binary_hook) - hook.hook_cmdline_linker(self.cmdline_hook) + hook.hook_cmdline_linker(self.link_cmdline_hook) @staticmethod - def cmdline_hook(toolchain, cmdline): + def link_cmdline_hook(toolchain, cmdline): return cmdline + ["--any_placement=first_fit"] @staticmethod