Tool/software: Code Composer Studio
the project builds successfully with no errors and still no .out file generate.
Here is a screenshot of the building process output and as you can see the debug folder doesn't contain a .out file.Thanks in advance
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
the project builds successfully with no errors and still no .out file generate.
Here is a screenshot of the building process output and as you can see the debug folder doesn't contain a .out file.Thanks in advance
The build output shows a couple of warnings that say "linker input file unused because linking not done". Taking a look at the options, I see the -c option, which when passed to gcc tells it to compile only and not run the linker. That is the reason the .out file is not being generated.
I don't know how or why the -c option was added to this project, though. If you go into the Project Properties->Build->GNU Linker, check if the -c options is set (perhaps under Miscellaneous options), and if so, remove it and try to rebuild the project, and let us know if it works.