hi,
I am using the below command to generate the bin file using run command under Options, User, After Build/Rebuild
$K\ARM\ARMCC\bin\fromelf.exe --bin --output="$L@L.bin" !L
but it is not able to generate bin file and showing below error
FromELF: creating hex file...After Build - User command #1: C:\Keil_v5\\ARM\ARMCC\bin\fromelf.exe --bin --output="C:\Users\nxp\LPC55\LPC55S69\over\Keil\Objects\Over\Over.bin" .\Objects\Over\Over.axf*** Error: CreateProcess failed, Command: 'C:\Keil_v5\\ARM\ARMCC\bin\fromelf.exe --bin --output="C:\Users\nxp\LPC55\LPC55S69\over\Keil\Objects\Over\Over.bin" .\Objects\Over\Over.axf'".\Objects\Over\Over.axf" - 1 Error(s), 407 Warning(s).
this command use to work with older versions of microvision,
please let me know how to get rid of this issue.
Thank you in advance.
In MDK v5.37, there is no default armcc v5.x compiler toolchain installed. If you haven't yet installed the armcc v5.x compiler toolchain into your MDK v5.37, you should follow this page developer.arm.com/.../latest
Issue is resolved, fromelf.exe is present in C:\Keil_v5\ARM\ARMCLANG, after changing the path in the above command it started working.
Thank you