diff --git a/tools/export/cdt/__init__.py b/tools/export/cdt/__init__.py index 7b43761602..05147d07fc 100644 --- a/tools/export/cdt/__init__.py +++ b/tools/export/cdt/__init__.py @@ -14,7 +14,7 @@ class Eclipse(Makefile): super(Eclipse, self).generate() ctx = { 'name': self.project_name, - 'elf_location': join('.build',self.project_name)+'.elf', + 'elf_location': join('BUILD',self.project_name)+'.elf', 'c_symbols': self.toolchain.get_symbols(), 'asm_symbols': self.toolchain.get_symbols(True), 'target': self.target,