search for: msvcr80d

Displaying 5 results from an estimated 5 matches for "msvcr80d".

Did you mean: msvcr80
2009 Nov 04
0
[LLVMdev] just-in-time debugging of assertion failures with MSVC
...a compiler backend using LLVM with MSVC and have noticed that in LLVM version 2.6 it is no longer possible to use Just-In-Time Debugger at the point of assertion failure. The call stack is printed instead and the debugger stops at some strange location with the call stack like the following: > msvcr80d.dll!_NMSG_WRITE(int rterrnum=5111881) Line 198 C msvcr80d.dll!_close_nolock(int fh=7209065) Line 93 + 0x67 bytes C msvcr80d.dll!_close_nolock(int fh=5111881) Line 93 + 0x67 bytes C msvcr80d.dll!_close_nolock(int fh=7209065) Line 93 + 0x67 bytes C msvcr80d.dll!_close_nolock(int fh=661923...
2008 Oct 27
4
Generating 1.2rc1 DLLs with MSVC 2005
...VC 2005 project files available in the source code. After a lot of problems, finally I have generated the DLLs. However there is a strange dependence in this DLLs that does not allow to use it in a PC where MSVC is not installed. I think the problem is that the DLLs that I?m generating depends on MSVCR80D.DLL but the DLLs from Speex web site doesn?t depend on it. In the author?s info file, there is a mention to the author of the MSVC project files (John Francis Edwards), but his email is omitted. Please, if John or others can give me an advice about the correct configuration of the MSVC tools in...
2005 Dec 06
1
problems decoding speex... please help
...manual (1.1.11) with minor revisions. While running the program, encountered this warning: "Packet is larger than allocated buffer : 38" when calling speex_bits_read_from (&bits, cbits, nBytes) then my program terminated unexpectedly with errors (Unhandled exception at 0x10225e1f ( msvcr80d.dll) in sampleDEC.exe: 0xC0000005: Access violation reading location 0x645c3a63.) I declared cbits as char *cbits [500]. nBytes is 38, bit rate is 15000 bps. I'm decoding a 'speex' file created using a program much like sampleENC. Can anyone tell me what is wrong and how I can correct...
2008 Oct 27
0
Generating 1.2rc1 DLLs with MSVC 2005
...ource code. > > > > After a lot of problems, finally I have generated the DLLs. However > there is a strange dependence in this DLLs that does not allow to use it > in a PC where MSVC is not installed. I think the problem is that the > DLLs that I?m generating depends on MSVCR80D.DLL but the DLLs from Speex > web site doesn?t depend on it. > > > > In the author?s info file, there is a mention to the author of the MSVC > project files (John Francis Edwards), but his email is omitted. > > > > Please, if John or others can give me an adv...
2008 Oct 27
0
Generating 1.2rc1 DLLs with MSVC 2005
...gotten their way to the git. > After a lot of problems, finally I have generated the DLLs. However there is > a strange dependence in this DLLs that does not allow to use it in a PC > where MSVC is not installed. I think the problem is that the DLLs that I'm > generating depends on MSVCR80D.DLL but the DLLs from Speex web site doesn't > depend on it. In "Code Generation" properties select "Multi-threaded"/"Multi-threaded" instead of "Multi-threaded DLL"/"Multi-threaded Debug DLL" and you'll get rid of this dependency. --...