1

after buying the full version of VisualGDB i cannot find .elf files in new projects, and the old projects created with the TrialVersion wont open (unknown toolchain error).

I need the .elf file for STMStudio, becouse the live variables are not so good in VisualGDB.

After buying the key, VisualGDB did some upgrades, maybe i need to add just some settings.

Michal D
  • 109
  • 15

2 Answers2

3

Wrong Answer of Michal D. The file is created by MSBUILD. An executable file like .elf on UNIX systems doesn't have an extension.

The .elf on VisualGDB projects will be located in the same folder where .bin is generated.

ProjectRootPath/VisualGDB/Debug/nameOfYourProject

It hasn't an extension. And probably, it will be the largest file in the folder.

  • Hi, yes such file is there, but it cannot be loaded into a company program like the .elf files so it is worthless, but we did migrate to Atollic and everythink works fine now... – Michal D Nov 02 '17 at 07:04
2

SOLVED

To have a makefile and a .elf file it is necessary to import the project under GNU or to create it under GNU, the MSBuild doesnt create any of these files.

Thanks your answers leaded to a solution.

Michal D
  • 109
  • 15
  • Glad to hear it, it was a tricky stuff after all. Note that you will be able to accept you own answer after half a day. – Bence Kaulics Nov 02 '16 at 11:07