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

I have little progress

jiing
Beginner
202 Views
Hi



I have a little progress.

When I new "A Simple Windows CE Application". It pass the compiling process.

But Still failed in linking.



If I comment the line of "ippsCopy_16s(pSrc, pDst, SIZE); " as follows, it passed.

but we I un-comment the lint, it failed in linking.

And shows :



--------------------Configuration: test8 - Win32 (WCE emulator) Debug--------------------

Compiling...

test8.cpp

Linking...

test8.obj : error LNK2019: unresolved external symbol _ippsCopy_16s referenced in function _WinMain

emulatorDbg/test8.exe : fatal error LNK1120: 1 unresolved externals

Error executing link.exe.

D:WinCE_jiing est8ippIP.h(1645): Could not find the file ippi_plus.h.



test8.exe - 2 error(s), 0 warning(s)



My setting is as the above case.

My program is as following:============================





#include "stdafx.h"

#include "ippSP.h" //ippsCopy_16s declaration in here

#include "ipp.h"



int WINAPI WinMain( HINSTANCE hInstance,

HINSTANCE hPrevInstance,

LPTSTR lpCmdLine,

int nCmdShow)

{

// TODO: Place code here.

const int SIZE = 256;

Ipp16s pSrc[SIZE], pDst[SIZE];



int i;

for (i =0; i

pSrc = (Ipp16s)i;



// ippsCopy_16s(pSrc, pDst, SIZE); //this line has big problem



return 0;

}
0 Kudos
0 Replies
Reply