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
when building a project another engineer created i keep getting an error I can't seem to resolve I think it has to do with how I linked the files to rebuild his project please help
"../lnk_msp430f2274.cmd", line 90: error: placement fails for object ".int03",
size 0x4 (page 0). Available ranges:
INT03 size: 0x2 unused: 0x2 max hole: 0x2
error: errors encountered during linking; "Project.out" not built
Cody Wayment said:"../lnk_msp430f2274.cmd", line 90: error: placement fails for object ".int03",
size 0x4 (page 0). Available ranges:
INT03 size: 0x2 unused: 0x2 max hole: 0x2
This error is saying that the size of the section .int03 is 0x4 but there is only 0x2 available memory in the region that section is getting allocated to.
Your guess about it having to do with the linker command file is correct. You need to make sure you are using the linker command file appropriate for the version of CCS you are building with. Which version of CCS are you using? And which version was the original project created with?