[exporters] iar build artifacts in BUILD directory, not .build

pull/3287/head
Sam Grove 2016-11-17 23:53:41 -06:00
parent 0d3e9f0968
commit 72cdf9d16f
1 changed files with 1 additions and 1 deletions

View File

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