From 82e9c166f3b7187bd1fb6f889e2fc5c96e780092 Mon Sep 17 00:00:00 2001 From: Mihail Stoyanov Date: Wed, 9 Jul 2014 20:28:28 +0300 Subject: [PATCH] Remove --depend option that is specific to armcc --- workspace_tools/toolchains/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/toolchains/__init__.py b/workspace_tools/toolchains/__init__.py index 2a285b2ccb..b4efdda92e 100644 --- a/workspace_tools/toolchains/__init__.py +++ b/workspace_tools/toolchains/__init__.py @@ -590,7 +590,7 @@ class mbedToolchain: if len(deps) == 0 or self.need_update(object, deps): # Compile - command = cc + ['--depend=' + dep_path] + ['-D%s' % s for s in self.get_symbols()] + ["-I%s" % i for i in includes] + ["-o", object, source] + command = cc + ['-D%s' % s for s in self.get_symbols()] + ["-I%s" % i for i in includes] + ["-o", object, source] if hasattr(self, "get_dep_opt"): command.extend(self.get_dep_opt(dep_path))