Build error about "cuda-meme-v2.6"

Hi all,

I encountered many linker errors while building the project cuda-meme-v2.6 in VS2008 (CUDA 3.0).

One of the errors is as following:

Error 91 error LNK2019: unresolved external symbol _copy_model referenced in function _main meme.obj

I found that the method copy_modelmethod is declared in file memm.h as following:

extern void copy_model(

  MODEL *m1,	 /* source */

  MODEL *m2,	/* destination */

  int alength	/* length of alphabet */

);

But I could not find any files in the project that define that method like:

extern void copy_model(

  MODEL *m1,	 /* source */

  MODEL *m2,	/* destination */

  int alength	/* length of alphabet */

)

{

  ...

  ...

}

Can anyone help me if you encountered the same problem? Thanks for any kind of help from you!

Plese try to build it in Linux OS.