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.
Tool/software: TI C/C++ Compiler
Hi,
What is the purpose of using libc.a file in projects?
If I am using my own created real time libraries, can I remove libc.a from File Search Path in 'Properties'?
Thanks,
R.Subha
Subha R said:What is the purpose of using libc.a file in projects?
It is an index library that is automatically replaced with the compiler RTS library that best matches the build options used by the main application code.
Subha R said:If I am using my own created real time libraries, can I remove libc.a from File Search Path in 'Properties'?
You can remove it. Under most conditions, that change does not make a difference. The linker still recognizes a C or C++ program is being built, and brings in the appropriate RTS library. For details, please search the C28x compiler manual for the sub-chapter titled Controlling the Linking Process.
Thanks and regards,
-George