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.

CCS/CC3220MODA: If I move my CCS8 project is there a simple way to

Part Number: CC3220MODA
Other Parts Discussed in Thread: CC3220SF, SYSBIOS

Tool/software: Code Composer Studio

Hi,

My current setup has the Texas tools/sdk and project on drive D. If I clone the repo on another laptop that only has a C drive the project tirtos_builds_CC3220SF_LAUNCHXL_release_ccs gives errors mostly 'can't find tools'.

Which is reasonable as the tools on this laptop are on C.

My current workaround is to edit the

tirtos_builds_CC3220SF_LAUNCHXL_release_ccs\src\sysbios\makefile

and correct the paths and this works fine.

Rather then editing this file is there a 'proper' way to change the sdk/tool location for the build?

Regards,

  • Tunstall_User said:

    My current workaround is to edit the

    tirtos_builds_CC3220SF_LAUNCHXL_release_ccs\src\sysbios\makefile

    and correct the paths and this works fine.

    It is generally not advisable to edit makefiles as they are auto-generated by the tools so any modifications made to the file will be over-written when the files are re-generated.

    Paths to tools are usually set up to be relative to variables, so as long as the variables are adjusted to match with the paths on the new laptop it should build fine. On the new laptop, make sure the SDK is discovered and selected prior to importing the project. That should automatically use the correct paths. Please see this page for more details. If some incorrect paths still remain, you may need to adjust some variables manually from the Project Properties->Build->Variables tab.

    Hope this helps.