Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
6712 Discussions

error LNK2001: unresolved external symbol _ippsGetLibVersion@0

yinyang2006
Beginner
381 Views
i'm having:
error LNK2001: unresolved external symbol _ippsGetLibVersion@0
with my MS VS2005, although i have already included the ippcore.h in my project and linked to ippcore.lib?
0 Kudos
5 Replies
Vladimir_Dudnik
Employee
381 Views

You need to add ipps library to your linker settings. You also might be interested to see IPP samples, which demostrate how to use IPP functions in many areas.

Vladimir

0 Kudos
yinyang2006
Beginner
381 Views
i did 'ippcore.lib' add in Linker->Command line->additional options?
0 Kudos
Vladimir_Dudnik
Employee
381 Views
Please add ipps.lib as well.
0 Kudos
Vladimir_Dudnik
Employee
381 Views

By the way, it is easy to learn which functions correspond to which library by looking through IPP header files. For example, ippGetCpuClock function is declared in ippcore.h and so it contained in ippcore.lib library (ippcorel.lib for static library) whereas function ippsZero_8u is declared in ipps.h and is implemented in ipps.lib file (ippsmerged.lib/ippsemerged.lib for static libraries)

Vladimir

0 Kudos
yinyang2006
Beginner
381 Views
its working now.

thanks.
0 Kudos
Reply