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/TM4C1292NCPDT: 06/21/2017

Part Number: TM4C1292NCPDT

Tool/software: Code Composer Studio

Hi,

I am using code composer studio version 6.2. While running my project I am getting an error as

error #10234-D: unresolved symbols remain

error #10010: errors encountered during linking; "test3.out" not built
>> Compilation failure
makefile:141: recipe for target 'test3.out' failed
gmake: *** [test3.out] Error 1
gmake: Target 'all' not remade because of errors.

Why this error comes? How can I rectify the error?

Expecting your quick reply

Regards

Sandra

  • Sandra,

    This error typically occurs when you are attempting to use a function for which you have not included the implementation.  i.e. you are likely missing a library.  There is more information here:

    When this error occurs it should be showing the name of the symbol that cannot be resolved.  Take a look at that symbol.  Usually when I see this it is that the library path is not setup properly for something like driver lib..

    For example here is a project that I have which uses driver lib from TivaWare:

    Regards,

    John