mirror of https://github.com/ARMmbed/mbed-os.git
Remove --depend option that is specific to armcc
parent
ff3cd57126
commit
82e9c166f3
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in New Issue