Tool/software: Code Composer Studio
I have a CCS3.3 project imported to CCS v7. The project built correctly but resulted in different size. Comparing the generated asm files, I found the CCS3 asm file is using relative paths and CCS7 is using full path.
For example, the generated CCS3 asm file has:
.dwpsn file C:"McBSP0Codec.c",line 346,column 1,is_stm
But the CCS7 asm file has:
.dwattr $C$DW$87, DW_AT_TI_end_file("C:/code/Products/Source//USB/McBSP0Codec.c")
Also the .const section is different. In CCS3: $C$FSL2: .string "ASSERT MEM_ILLEGAL!=g_Resample_to_SP0_NBCQ_handleMcBSP0Code". But in CCS7:
$C$FSL2: .string "ASSERT MEM_ILLEGAL!=g_Resample_to_SP0_NBCQ_handleC:/tfs/Pro"
What compiler options or build options I need to set to make both CCS3 and CCS7 build the exact same memory size?
Please help!