Tool/software: Code Composer Studio
I am trying to build a code in Code Composer Studio (CCS7.1.0.00016_win32). I faced these errors. I am using Windows 7 64-bit version. I will greatly appreciate any input one how to fix these errors. Thank you!
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
I am trying to build a code in Code Composer Studio (CCS7.1.0.00016_win32). I faced these errors. I am using Windows 7 64-bit version. I will greatly appreciate any input one how to fix these errors. Thank you!
Niloy,
There are a bunch of errors that relate to CCS not being able to find header (.h) files when building. That is happening because the include paths haven't been setup for CCS to find those files.
You can setup the include paths by right clicking on the project in Project Explorer and selecting properties. Then go to Build -> MSP430 Compiler -> Include Options in the tree on the left. You can then setup the paths in the dialog on the right.
I suspect that a few of your #include statements have partial paths in them so you will need to make sure your include paths match.
For example if I have #include <ti/john.h> and john.h is located in c:/code/misc/ti I would setup the include path as c:/code/misc
Once you resolve those compile errors you will likely hit something similar when linking as I bet there are one or more libraries included that the paths are not correct. You would fix those here:
Regards,
John