Is it possible to create dynamic libraries in CCS5? If so can you link to the documentation that explains how to do it. I apologize if this is an overly simple question, but I have not managed to find much information on dynamic libraries and CCS.
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.
Is it possible to create dynamic libraries in CCS5? If so can you link to the documentation that explains how to do it. I apologize if this is an overly simple question, but I have not managed to find much information on dynamic libraries and CCS.
Hello,
While there is some support for dynamic libraries with some TI compilers, I'm sorry to say that it does not apply to the TI MSP430 compiler. Sorry.
ki
AmirthaRaj said:could u please specify what format need to be given COFF or ELF, so that the created library will be used in another library??
Aarti has answered this question in your other thread.
http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/170756.aspx
Thanks
ki
Thanks Ki-soo-lee
Actually if a team A giving a library file int.lib (created with COFF format)
and a team B giving a library file ext.lib( Having a calling function to the function in int.lib) (created with COFF format) (ext.lib includes int.lib)
if a team c forms a executable .out from ext.lib (not giving search path to int.lib)
then Will it works???
It shows one error ---unresolved symbol???
Then if we create both libraries with ELF format, will it require to add search path for int.lib also???