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.
For TI C64x+ and the compiler is ti-cgt-c6000_8.0.1, i want to know whether the compiler is using the already linked ELF FastRTS library or is it using the default ELF RTS library. Can you please provide me with some method by which i can verify the same?
In the .map file i can see both ELF RTS and ELF FastRTS .obj files, but I want to confirm that my FastRTS library is working fine and the compiler is prioritising it over the RTS library.
Yunii said:I want to confirm that my FastRTS library is working fine and the compiler is prioritising it over the RTS library
Use the linker option --scan_libraries. When this option is used, the linker issues a diagnostic whenever it uses a function that is defined in multiple libraries. The diagnostic shows you which library supplied the function. Read about it in the C6000 assembly language tools manual.
Thanks and regards,
-George