Page 1 of 1

Embedded ARM executeable image

Posted: Sat Sep 24, 2011 10:29 am
by ndivner
Hi Eran,

Developing for Embedded ARM Cortex M3 using Codesourcery GCC toolcahin on WinXP SP3

My executeable image is a projectname.elf as follows :
<General OutputFile="$(IntermediateDirectory)/$(ProjectName).elf" IntermediateDirectory="./Release" Command="./$(ProjectName)" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes"/>
Having upgraded to V3.0.5041 I am now getting a ".exe" suffix added to the above .elf and my flash programming scripts are complaining.
Is it possible to turn this feature off?

Best regards,

Noel.

Re: Embedded ARM executeable image

Posted: Sat Sep 24, 2011 10:32 am
by eranif
This is already fixed in SVN.
As a workaround, you can add a post build command that rename the output file from <name>.elf.exe into <name>.elf

Eran

Re: Embedded ARM executeable image

Posted: Sat Sep 24, 2011 10:44 am
by ndivner
Thank you,

Noel.