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.
I was having the same trouble as discussed in several other threads:
http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/p/57598/204769.aspx
and
Michael,
I can't find an easy way to do this but there is a hard way. If you open the .cdtbuild file that is in your project directory and search for the filename that has file specific options you will find a section of the file that contains the file specific information for that file. If the file does not have any file specific options you won't find it at all in the .cdtbuild file.
For example I have a simple project (called "file specific options"). On the hello.c file I changed it to have a file specific option setting the memory model to large. I do the search and find the spot in the .cdtbuild file and I can see the option being set.
<resourceConfiguration exclude="false" id="com.ti.ccstudio.buildDefinitions.MSP430.Debug.645938194./File specific options/hello.c" name="hello.c" rcbsApplicability="disable" resourcePath="/File specific options/hello.c" toolsToInvoke="com.ti.ccstudio.buildDefinitions.MSP430_3.3.exe.compilerDebug.1927809655./File specific options/hello.c">
<tool id="com.ti.ccstudio.buildDefinitions.MSP430_3.3.exe.compilerDebug.1927809655./File specific options/hello.c" name="MSP430 Compiler" superClass="com.ti.ccstudio.buildDefinitions.MSP430_3.3.exe.compilerDebug.1927809655">
<option id="com.ti.ccstudio.buildDefinitions.MSP430_3.3.compilerID.LARGE_MEMORY_MODEL.1811482081" superClass="com.ti.ccstudio.buildDefinitions.MSP430_3.3.compilerID.LARGE_MEMORY_MODEL" value="true" valueType="boolean"/>
</tool>
You can see which files are using file specific options as they will have a little triangle on the top left corner in the project view in v4. In v5 I think it is the top right and looks like a little wrench.
Regards,
John