Part Number: TDA4VM
Tool/software: TI C/C++ Compiler
In my project, I want to realize a interface to call openvx function by encapsulation for static library.
At beginning, I try to use makefile or cmake to do that, but I find it is too complex to enumerate related library,
So I use TI compiler framework, I can compile library and exe file quickly for just configuration concerto.mak.
However, I find a problem for setting TARGETTYPE.
When I make it exe, I can comile an exe file ended with .out, which size is several MBs, and can run on TDA4
board rightly, it seems containing all related libraries.
When I make it library, I can comile an lib file ended with .a, which size is only several KBs, and it looks like
so small that I guess all related libraries is not inclued for that, maybe it is dynamic library.
Howerver, if I can not comile a static library, I have to copy many related library together to accomplish compile
link, thus I want to know how to compile a real static library ?