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.

[FAQ] CCS: How to resolve build error #10234-D: unresolved symbols remain?

Tool/software: Code Composer Studio

I am getting a build error from the linker when building my CCS project:
error #10234-D: unresolved symbols remain 

How do I resolve it?

  • This page contains more information about the error and how to resolve it:
    software-dl.ti.com/.../sdto_ccs_build-errors.html

    In summary, the error is generated by the linker when it is unable to find the definition for the symbol. This typically happens if an object file or library containing the definition for the symbol was not provided to the linker. The build output in the CCS build console should provide information on which object files and libraries are passed to the linker.

    To resolve the error, locate the source file or library that contains the definition for the symbol and make sure that it is part of the project.