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.

I am getting this error

Other Parts Discussed in Thread: CCSTUDIO

Hi,

So far I practiced on Examples by modifying them,but when i wish to do a new project i am getting following error.

I am not understanding this error:

[Linking...] "C:\CCStudio_v3.3\c2000\cgtools\bin\cl2000" -@"Debug.lkf"
<Linking>
>> warning: entry point symbol _c_int00 undefined

undefined                        first referenced
 symbol                              in file
---------                        ----------------
_c_int00                         C:\\practce tidcs\\c28\\DSP2833x\\v110\\DSP2833x_examples\\Inverter_Gatedrive\\Debug\\DSP2833x_CodeStartBranch.obj
>>   error: symbol referencing errors - './Debug/Inverter_Gatedrive.out' not
            built

>> Compilation failure

Build Complete,
  2 Errors, 1 Warnings, 0 Remarks.

what is the error that is showing and what to do for elimination of error ?

Thanks & regards,

Naveen

 

  • Naveen,

    Naveen Rangu said:

    I am not understanding this error:

    [Linking...] "C:\CCStudio_v3.3\c2000\cgtools\bin\cl2000" -@"Debug.lkf"
    <Linking>
    >> warning: entry point symbol _c_int00 undefined

    This means the linker cannot find the symbol _c_int00.  This symbol is part of the runtime support library which comes with the codegen tools.  You can find it in the  the codegen install directory under the lib sub directory. 

    The _c_int00 section sets up the environment before calling the main() function.  It should be included in just about every program - unless you are perhaps developing pure assembly.

    Not sure which 28x processor you are using - if it is a fixed point device then include the rts2800_ml.lib.   If it is a floating-point device include the fpu32 version of the library.

    Regards

    -Lori

     

  • thank you very much Lori,

    i added the run time library file,now its working

     

    regards,

    Naveen Rangu