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

Linker error with jpeg 2000 sample in Visual Studio 2008

haerle1
Beginner
302 Views
Hello,

I am trying to get started with JPeg 2000 (de)compression. I have generated a Visual Studio 2008 Solution with all the files from the jpeg 2000 example. I can compile the project but I some linker errors (see below). I am already linking against all the ipp stub libs (ippac.lib ippcc.lib ippch.lib ippcore.lib ippcv.lib ippdc.lib ippi.lib ippj.lib ippm.lib ippr.lib ipps.lib ippsc.lib ippsr.lib ippvc.lib ippvm.lib) and the system libs I found in the makefile (kernel32.lib user32.lib gdi32.lib vfw32.lib shell32.lib).
Does anybody know in which library funktions like "_sysMemoryMapViewGetAddr" are?

Thanks in advance for your help,

Fabian


Error 2 error LNK2019: unresolved external symbol _sysMemoryMapViewGetAddr referenced in function "public: void * __thiscall MapFile::Data(void)const " (?Data@MapFile@@QBEPAXXZ) IppJ2KTest.obj IppJ2KTest
Error 3 error LNK2001: unresolved external symbol _sysMemoryMapViewGetAddr decode.obj IppJ2KTest
Error 4 error LNK2001: unresolved external symbol _sysMemoryMapViewGetAddr encode.obj IppJ2KTest
Error 5 error LNK2019: unresolved external symbol "int __cdecl DisplayPixMap(unsigned char *,int,int,char const *)" (?DisplayPixMap@@YAHPAEHHPBD@Z) referenced in function "void __cdecl decode(class CmdOptions const &,class BDiagnOutput &)" (?decode@@YAXABVCmdOptions@@AAVBDiagnOutput@@@Z) decode.obj IppJ2KTest
Error 6 error LNK2019: unresolved external symbol _sysFileCreate referenced in function "public: void __thiscall File::Open(char const *,enum File::Access)" (?Open@File@@QAEXPBDW4Access@1@@Z) mapfile.obj IppJ2KTest
Error 7 error LNK2019: unresolved external symbol _sysFileClose referenced in function "public: void __thiscall File::Close(void)" (?Close@File@@QAEXXZ) mapfile.obj IppJ2KTest
Error 8 error LNK2019: unresolved external symbol _sysFileGetSize referenced in function "public: unsigned int __thiscall File::Size(void)const " (?Size@File@@QBEIXZ) mapfile.obj IppJ2KTest
Error 9 error LNK2019: unresolved external symbol _sysMemoryMapClose referenced in function "public: void __thiscall MapFile::Open(char const *)" (?Open@MapFile@@QAEXPBD@Z) mapfile.obj IppJ2KTest
Error 10 error LNK2019: unresolved external symbol _sysMemoryMapViewCreate referenced in function "public: void __thiscall MapFile::Open(char const *)" (?Open@MapFile@@QAEXPBD@Z) mapfile.obj IppJ2KTest
Error 11 error LNK2019: unresolved external symbol _sysMemoryMapCreate referenced in function "public: void __thiscall MapFile::Open(char const *)" (?Open@MapFile@@QAEXPBD@Z) mapfile.obj IppJ2KTest
Error 12 error LNK2019: unresolved external symbol _sysMemoryMapViewClose referenced in function "public: void __thiscall MapFile::Close(void)" (?Close@MapFile@@QAEXXZ) mapfile.obj IppJ2KTest


0 Kudos
1 Reply
Vladimir_Dudnik
Employee
302 Views
You may have missed some files from original sample or did not set required macro definitions. Please pay attention to sample makefile content

Vladimir
0 Kudos
Reply