We are just creating a FIR xdais compliant algorithm.
On building FIR creates a fir.lib file
we are using another library which contains copying function copy( ) to be invoked from fir library.
we included copy.lib in fir project and then only fir.lib created...
Now the fact is both libraries creates .lib files.
But we are accessing the libraries via a self-written framework project (main.c---another small pjt), which could not identify the function copy() in that library?? i.e. .out file not created
We included only file search path in framework pjt for fir.lib alone!!!!
Should we have to include search path for copy.lib also???
fir & copy projects created with both static libraries & legacy COFF format
main.c framework project created with executable format.