Tool/software: Code Composer Studio
I am trying to construct a project footprint that includes the compiler version used in that build / release. So everything used within the project is installed from a "MyProject" folder, including the compiler. This would allow me to have multiple versions in different locations and they would all use the version of the compiler specific to them. This means all paths must be relative to ${WORKSPACE_LOC}, which seems to work ... except :-
I setup the compiler version appropriately to a sub folder within my project area ( Project->Properties->CCS General->Compiler Version ) and it works fine. BUT if I then move the project under a new top level project folder the compiler version is lost and it refuses to build saying the compiler version doesn't match that used to previously build the project. This suggests the path used by CCS is absolute rather than relative, even though I gave manually gone through ALL build and environment path variables and made them relative to ${WORKSPACE_LOC}.
Is there a solution to this ? Is this information stored within a config file somewhere that I can modify ? I will upgrade to CCSV7 soon but it seems this feature is unchanged so my problem will still exist ?