search for: _spx_cos

Displaying 2 results from an estimated 2 matches for "_spx_cos".

Did you mean: spx_cos
2004 Aug 06
4
compile speexenc
Hello, Iam being to compile speexenc but I have the following error: LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other libs; use /NODEFAULTLIB:library libspeex.lib(lsp.obj) : error LNK2001: unresolved external symbol _spx_cos Debug/speexenc.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. Please, help me Guillaume --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'speex-dev-request@...
2004 Aug 06
0
compile speexenc
...aded) (D=Debug) In the propeerties are you linknig to "Multi threaded Debug" or are you manually including this file ? http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HT ML/lnk4098.asp > libspeex.lib(lsp.obj) : error LNK2001: unresolved external symbol > _spx_cos > Debug/speexenc.exe : fatal error LNK1120: 1 unresolved externals This is what is stopping your build... it is either : 1) The function spx_cos doesn't exist, 2) Are you building libspeex as a dll or a static library... if it's a dll, check the .def file to find this function. 3) Visu...