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: TI-RTOS
I am trying to compile RTOS example project as C++. I am using
prog.extern("task","C++") in tcf file. still compiler is not able to recognize task function.
If I build project with C it works fine. Refer attached project.
undefined first referenced
symbol in file
--------- ----------------
task ./tskcfg.obj
error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "RTOS_NGCB.out" not built
>> Compilation failure
makefile:141: recipe for target 'RTOS_NGCB.out' failed
gmake: *** [RTOS_NGCB.out] Error 1
gmake: Target 'all' not remade because of errors.
Please refer attached project.
I tried to rename "tsk.c" to "tsk.cpp" it did not help. Undefined symbol error appear for "tskcfg.obj" file, which is generated by config tool. If I tried to rename "tskcfg.c" to "tskcfg.cpp", config tool generate another file with "tskcfg.c" name.
Undefined symbol error appear only if "Treat C file as C++ File" Option enable. I need this option enable because I am planning to use C++ for project.
I'd remove the "C++" from the .tcf file. Then add the following around the task function.
#ifdef __cplusplus
extern "C" {
#endif
Void task(...)
...
#ifdef __cplusplus
}
#endif