Tool/software: Code Composer Studio
I am trying to generate the same output when building my project with CCS7 and with CMake. The last remaining issue is that there are significant differences in the .map file and linker files due to how the different tools handle object files.
In CCS, the souce file myfile.c would generate the object file myfile.obj. In CMake the source file myfile.c would generate the object file myfile.c.obj. Is there a way in CCS to change the object files so that they match the CMake style output?
My project also has .asm files so using the '--object_extension .c.obj' doesn't work properly for the .asm files (as they should be .asm.obj).