Displaying 3 results from an estimated 3 matches for "vccore98".
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
2004 Aug 06
0
compile speexenc
...use /NODEFAULTLIB:library
This is because you are linking different types of library LIBC
(MT=Multithreaded) (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 libspe...
2004 Sep 10
2
stat() and Windows
I tried to compile FLAC on Windows (the winamp2 plugin as a test) and I
encoutered a problem. The stat() function and the associated structure
doesn't exist on Windows (Visual Studio 5/6). But _stat and the
structure with the same name does exist. So would it be possible to
change stat() and struct stat ?
I did the following in the code :
#define STAT(x,y) _stat(x,y)
typedef struct stat