I have an application and a static library. The library seems to be built just fine - it will certainly compile my foo and bar and geewhizz as accurately as possible, and create a static library without any errors or warnings.
However, when the application builds and references the static library, it manages to reference the foo and bar functions, but cannot find the geewhizz function. How can I determine if he geewhizz to the library? I do not see any /map option for libraries, for example, for creating applications. And it makes no sense to use the \map parameter when creating the application, because it cannot find my geewhizz function and has no reason to report it.
I work with a mixture of C and C ++, and I suspect that there is probably a problem with the spelling / translation of the function name or a problem with calls causing the problem, so I believe that the list of functions included in the library should be able to shine on this is. But if there are any general recommendations for resolving such issues, I would be glad to hear that.
source share