error LNK2019: unresolved symbol _sprintf,when I link CyAPI.lib in VS2015

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

When I link CyApi.lib in VS2015 C++,an error occur.error LNK2019: unresolved symbol  _sprintf​

   

How can I resolve it.

   

Thanks

0 Likes
2 Replies
Anonymous
Not applicable

Add the following library to the linker input files:

   

legacy_stdio_definitions.lib

   

VS 2015 now uses inline definitions that call internal functions for many of the stdio.h functions. If an object file (or library member) depends on one of those functions, then the legacy_stdio_definitions.lib provides an externally linkable version of the function that can be linked to.

   

Your other option is to recompile the unit that depends on those functions with VS 2015 (this is probably the preferred option).

   

Thanks,

   

Krishna.

0 Likes
Anonymous
Not applicable

I have resolved it.Thanks

0 Likes