Tool/software: Code Composer Studio
Hi,
I created a CCS project using the GCC toolchain and a custom makefile. The final build target contains the file extension .elf while CCS expects .out as the suffix. This leads to an error when starting a debug session: CCS cannot find and load the application since the file suffix is wrong.
It works though when I hard-code the path to the ELF file in the following dialog:
I don't want to hard-code the file path, but I want to construct it based on available variables like the build directory and the project name.
Questions:
- Is there any documentation available about variables I can put in this field?
- Can you help me to generalize that field? I don't want to hard-code the filepath. I tried ${BuildDirectory}/{ProjName}.elf but that results in below error message and makes the debug configuration unusable. CCS will not open the debug settings dialog if it finds an error there. This is annoying.
Thanks


