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.

compilation error during building the project

hi,

i am trying ti implement one denoising method(visu shrink) in 6713 using cc studio.but i could not able to build the project due to following error.

error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "imvisu.out" not built
how can i solve this problem

  • Hi Saranya,

    more details might help, but this error is usually due to the linker not being able to resolve a path/library.  I would check your library include paths under the File Search Path in your projects linker options as described in this wiki

    http://processors.wiki.ti.com/index.php/Include_paths_and_options

    Please give that a try and keep us informed.

    Best Regards,

    Lisa

  • hi,

    thank you for your help.i have done settings  using the procedure in the following link.

    http://processors.wiki.ti.com/index.php/Include_paths_and_options

    but my problem is not solved yet now.i got result during buid the project as follows

    **** Build of configuration Debug for project visushrink ****

    C:\ti\ccsv5\utils\bin\gmake -k all
    'Building target: visushrink.out'
    'Invoking: C6000 Linker'
    "C:/ti/ccsv5/tools/compiler/c6000/bin/cl6x" -g --display_error_number --diag_warning=225 --abi=coffabi -z -m"visushrink.map" --warn_sections -i"C:/ti/ccsv5/tools/compiler/c6000/lib" -i"C:/ti/ccsv5/tools/compiler/c6000/include" --reread_libs --rom_model -o "visushrink.out"  "./visu.obj" "./rt_nonfinite.obj" "./rtGetNaN.obj" "./VisuThresh_terminate.obj" "./VisuThresh_initialize.obj" -l"libc.a" "../lnk.cmd"
    <Linking>

     undefined first referenced                                               
      symbol       in file                                                    
     --------- ----------------                                               
     _main     C:\ti\ccsv5\tools\compiler\c6000\lib\rts6200.lib<args_main.obj>

    error #10234-D: unresolved symbols remain
    error #10010: errors encountered during linking; "visushrink.out" not built

    >> Compilation failure
    gmake: *** [visushrink.out] Error 1
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****
    thank you

  • Hi Saranya,

    this is still likely a linker path error.  Have you made sure the path to rts6200.lib is properly input in ccs like in the wiki?

    Best Regards,

    LIsa

  • That error message is telling you that you haven't supplied a main function in your program.  You must supply this function.  Please verify that one of your input files contains this function, and that it is not conditionally compiled out.

  • hai,

    now the program can be build.but during loading of the program i got one notification as follows

    No source available for "abort() at 0x27c0"

    is this an error?how can i solve this problem

  • Same problem was occurred with me while debugging the my ccs project in ccs 5.

    This problem was due to double call of "DSK6713_init();" function in my .c file.

    Check your calls of function this might be problem.