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.

Build Properties, Copying Build Properties

I have a project that is compelte and working as a Debug Configuration.

How do i copy the Debug configuration to the Release Configuration?

 

  • Assuming this is for CCSv4, one option is to delete the existing 'Release' configuration and then create a 'new' configuration of the same name (Release) and select the option to copy settings from and existing configuration (Debug).

    ki

  • That works, thank you,

    Next:

    What should be changed for a release configuration that is copied from a debug configuration?

     

  • Mitch Nelson said:
    What should be changed for a release configuration that is copied from a debug configuration?

    This is up to you. Normally people turn off full symbolic debug (-g) in favor of --symdebug:skeletal or --symdebug:none and turn on some optimization (-o). If code size is an issue you can optimize for code size (-ms). If you have #defines in your code for release code, you can set them in this configuration.