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.

CCS: View log of build warnings in CCS?

Tool/software: Code Composer Studio

CCS 8 - How can I view a list of all warnings after a build?   I see a bunch of highlighted warnings scrolling by quickly,  and can tell some of them are ones I badly NEED to read in detail, but at the end of the build CCS wipes the console and just leaves a three line thing like:

*********************************************

**** Build of configuration FlashROM_StackLibrary for project project_zero_cc2640r2lp_app5 ****

"C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 4 all -O
 
gmake[1]: 'project_zero_cc2640r2lp_app5.out' is up to date.
*********************************************
with no scroll back and no apparent way to go back and see the dozens of warnings that scrolled by. Another question thread here recommended looking at the log file:  (\.metadata\.plugins\org.eclipse.cdt.ui)
but when I go there it's just the same useless last three lines.
Also, is there a way to force a full rebuild of a project but not the whole workspace, so I can see the warnings only for the current project.
Thanks
  • Heinrich,

    Heinrich Foltz said:
    Also, is there a way to force a full rebuild of a project but not the whole workspace, so I can see the warnings only for the current project.

    Project -> Clean , uncheck "Clean all projects", select "Build only the selected projects"

    Heinrich Foltz said:
    How can I view a list of all warnings after a build?

    Are you talking about View -> Console ?
    Console windows has Copy Build Log icon.
    Did you tried that function?

    Please, provide CCS version details and OS.

  • Thanks for the quick reply.  I'll look again for the Copy Build Log icon, didn't see one.

  • Heinrich Foltz said:

    but at the end of the build CCS wipes the console and just leaves a three line thing like:

    *********************************************

    **** Build of configuration FlashROM_StackLibrary for project project_zero_cc2640r2lp_app5 ****

    "C:\\ti\\ccsv8\\utils\\bin\\gmake" -k -j 4 all -O
     
    gmake[1]: 'project_zero_cc2640r2lp_app5.out' is up to date.
    *********************************************
    with no scroll back and no apparent way to go back and see the dozens of warnings that scrolled by.

    If there is no change/nothing new to build since a previous successful build attempt, then CCS will simply report that the file is up to date, like the above message. In this case, a Rebuild will trigger a clean and full rebuild of the project.

    The answers provided by Tom on where to look for the build log is also documented here.

  • Thanks for your heklp, this resolved my question.