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

error LNK2001: unresolved external symbol _ippsGetLibVersion@0

yinyang2006
Einsteiger
771Aufrufe
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 Antworten
Vladimir_Dudnik
Mitarbeiter
771Aufrufe

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

yinyang2006
Einsteiger
771Aufrufe
i did 'ippcore.lib' add in Linker->Command line->additional options?
Vladimir_Dudnik
Mitarbeiter
771Aufrufe
Please add ipps.lib as well.
Vladimir_Dudnik
Mitarbeiter
771Aufrufe

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

yinyang2006
Einsteiger
771Aufrufe
its working now.

thanks.
Antworten