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.

Error while generating obj file

Other Parts Discussed in Thread: LM3S8962, EK-LM3S8962

 

HI

I recently purchased a LM3S8962 development board.

While I was working on an example program on graphics (StellarisWare\boards\ek-lm3s8962) I encountered these errors.

These errors were not a part of the main program. I included the essential driver libraries in my project but still the compilation was unsuccessful.

errors encountered during linking; "sid.out" not built     

unresolved symbol RIT128x96x4ImageDraw, first referenced in ./souurce.obj                   

unresolved symbol RIT128x96x4Init, first referenced in ./souurce.obj                    

unresolved symbol RIT128x96x4StringDraw, first referenced in ./souurce.obj                    

unresolved symbol SysCtlClockSet, first referenced in ./souurce.obj                       

 

  • Sidd,

    Did you add the source file rit128x96x4.c to your project? It can be found in the \drivers sub-folder. This file contains the definitions for the RIT* symbols that you're getting the errors on.

    In addition, also be sure to add driverlib as a referenced project within your main project, and add the driverlib as input to the linker (under Build Properties->C/C++ Build->Linker->File Search Path, under --library option).

    Hope this helps.