Hello,
I received following error message while compiling with C2000 compiler. Does anyone have any idea?
error: option --include_path is missing its parameter 'dir'
Thanks!
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.
Hello,
I received following error message while compiling with C2000 compiler. Does anyone have any idea?
error: option --include_path is missing its parameter 'dir'
Thanks!
Charlie,
Basically there is an --include_path option being passed to the compiler that is not followed by a directory. The most common case of this I see is when there is a macro listed as the include path in the project options but that macro is not defined.
Right click on your project and select properties. Expand the compiler on the left and then select Include Options. This will list all the include paths that are setup. I am betting there is one there that uses a macro that is not defined. A macro would look something like ${CG_TOOL_ROOT}/include. That CG_TOOL_ROOT is set by CCS as the location of the compiler. That one should always be defined but you may have others.
Regards,
John