Remove --depend option that is specific to armcc

pull/395/head
Mihail Stoyanov 2014-07-09 20:28:28 +03:00
parent ff3cd57126
commit 82e9c166f3
1 changed files with 1 additions and 1 deletions

View File

@ -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))