Hi All ,
I am using the TMS320C6713 processor for the first time (Infact i am working on DSP system for the first Time).
To get familirize with the processor i started using the CCS3.3 in simulator & started writing an sample hello world.
I tried to build an simple " Hello World " application on CCS 3.3 with following steps :-
1. Project ---->Project Name (hello)
Project Type (.out)
Target (TMS320C67XX)
2. Add files to the project (hello.c)
hello.c has the following code ....
#include <stdio.h>
void main()
{
printf("Hello World ...\n");
}
The CODE Compiled without any error
[hello.c] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/CCStudio_v3.3/MyProjects/Hello/Debug" -d"_DEBUG" -mv6700 -@"Debug.lkf" "hello.c"
Compile Complete,
0 Errors, 0 Warnings, 0 Remarks.
But the build showed following error :-
----------------------------- Hello.pjt - Debug -----------------------------
[hello.c] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/CCStudio_v3.3/MyProjects/Hello/Debug" -d"_DEBUG" -mv6700 -@"Debug.lkf" "hello.c"
Warning: The project has no cmd file while the Text Linker is selected
[Linking...] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -@"Debug.lkf"
<Linking>
>> warning: entry point symbol _c_int00 undefined
undefined first referenced
symbol in file
--------- ----------------
_printf C:\\CCStudio_v3.3\\MyProjects\\Hello\\Debug\\hello.obj
>> error: symbol referencing errors - './Debug/Hello.out' not built
>> Compilation failure
Build Complete,
2 Errors, 2 Warnings, 0 Remarks.
So can you please help me to figure out what is cause of above mentioned error.