Tagged Questions
MSVCRT is the Microsoft Visual C++ Runtime
10
votes
4answers
5k views
Windows malloc replacement (e.g., tcmalloc) and dynamic crt linking
A C++ program that uses several DLLs and QT should be equipped with a malloc replacement (like tcmalloc) for performance problems that can be verified to be caused by Windows malloc. With linux, there ...
9
votes
8answers
12k views
vcredist_x86.dll and version 8.0.50727.4053
Visual C++ 2005 I build on my system use CRT DLLs version 8.0.50727.4053. I believe it is the latest one and was automatically updated by Windows.
On user systems, this version of the DLL is not ...
8
votes
4answers
4k views
Should I redistribute msvcrt.dll with my application?
Should I redistribute msvcrt.dll with my application and use the private dll if some of the application's libs dynamically depend on msvcrt.dll? I.e. are any incompatibility issues possible with the ...
7
votes
6answers
6k views
Should I compile with /MD or /MT?
In Visual Studio, there's the compile flags /MD and /MT which let you choose which kind of C runtime library you want.
I understand the difference in implementation, but I'm still not sure which one ...
7
votes
6answers
2k views
How to execute some code before entering the main() routine in VC?
I am reading Microsoft's CRT source code, and I can come up with the following code, where the function __initstdio1 will be executed before main() routine.
The question is, how to execute some code ...
6
votes
1answer
913 views
Runtime Library mis-matches and VC++ - Oh, the misery!
It seems that all my adult life I've been tormented by the VC++ linker complaining or balking because various libraries do not agree on which version of the Runtime library to use. I'm never in the ...
6
votes
2answers
2k views
LoadLibrary() fails to load DLL with manifest and private assembly
I am working on a Windows application (EXE) that uses multiple DLLs. Development is in VCExpress 2005 (VC 8.0), using C only.
Some of these DLLs are plug-ins/add-ons/extensions that are dynamically ...
5
votes
3answers
334 views
What Visual C++ Runtimes are users likely to have installed?
What Visual C++ Runtimes are users likely to have installed?
Update: This question has become more of a "What is the best way to deploy internet based applications, written in C++. That require the ...
5
votes
3answers
18k views
Side-by-side configuration error (Microsoft.VC80.CRT v8.0.50608.0)
I have an assembly with the following manifest embedded:
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
...
5
votes
4answers
4k views
Should I link to the Visual Studio C runtime statically or dynamically?
I have read arguments on both sides about whether one should link to the C runtime library statically or dynamically in Visual Studio projects, and I'm still not entirely sure what to think.
My ...
5
votes
2answers
2k views
WaitForSingleObject on a file handle?
What happens when you call WaitForSingleObject() on a handle you've created with CreateFile() or _get_osfhandle()?
For reasons not worth explaining I would like to use WaitForSingleObject() to wait ...
5
votes
4answers
3k views
How to Enforce C++ compiler to use specific CRT version?
I am using VS2008 for developing a COM dll which by default uses CRT version 9
but I am using TSF (Text service framework) that is not compatible with the new CRT. I think the solution is to use the ...
5
votes
4answers
1k views
Is MSVCRT under Windows like glibc (libc) under *nix?
I frequently come across Windows programs that bundle in MSVCRT (or their more current equivalents) with the program executables. On a typical PC, I would find many copies of the same .DLL's. My ...
4
votes
1answer
130 views
Writing a DLL that loads msvcr80.dll and exposes the free()-function
I have a third-party DLL that depends on MSVCR80 and allocates resources that I need to cleanup. The library does not expose a free-function for doing this. Instead, I need to load the same runtime ...
4
votes
2answers
426 views
fread Only first 5 bytes of .PNG file
I've made a simple resource packer for packing the resources for my game into one file. Everything was going fine until I began writing the unpacker.
I noticed the .txt file - 26 bytes - that I had ...
4
votes
4answers
2k views
Why is vector deleting destructor being called as a result of a scalar delete?
I have some code that is crashing in a large system.
However, the code essentially boils down to the following pseudo-code.
I've removed much of the detail, as I have tried to boil this down to the ...
4
votes
4answers
459 views
How does PATH environment affect my running executable from using msvcr90 to msvcr80?
#include <gtk/gtk.h>
int main( int argc, char *argv[] )
{
GtkWidget *window;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_show ...
4
votes
4answers
200 views
CRT, do we still need to redistribute it?
Do we still need to bother with vcredist.exe when distributing windows native applications ? Does any of these come bundled with Win-7 ?
If not, are there any technical reasons these are not shipped ...
4
votes
3answers
705 views
Statically linking against library built with different version of C Runtime Library, ok or bad?
Consider this scenario:
An application links to 3rd party library A.
A is built using MSVC 2008 and is statically linking (ie. built with /MT) to the C Runtime Library v9.0.
The application is built ...
4
votes
3answers
233 views
Do memory deallocation routines touch the block being freed?
Windows HeapFree, msvcrt free: do they cause the memory being freed to be paged-in? I am trying to estimate if not freeing memory at exit would speed up application shutdown significantly.
NOTE: This ...
3
votes
2answers
122 views
std::vector constructor behavior
Take the following code:
std::vector<std::vector<int>> v(10, 10);
This code doesn't compile with libstdc++. It does compile with Visual Studio's C++ library, however. The behavior I ...
3
votes
3answers
234 views
Automatic detection of run-time libraries with WiX
When my file set includes DLLs with one ore more dependencies to the C++ run-time DLLs I need to install the file from VCRedist.exe. This can be difficult, since each DLL is dependent on a specific ...
3
votes
1answer
1k views
Dependency Walker Error: The Side-by-Side configuration information for “ABC.DLL” contains errors
I am running a program that I built in Visual Studio 2010 which uses a third party DLL "ABC.DLL". I am on Windows 7 64-bits.
However, it fails to run due to one DLL. When running Dependency walker on ...
3
votes
3answers
1k views
How do I get the file HANDLE from the fopen FILE structure?
The fopen function returns a pointer to a FILE structure, which should be considered an opaque value, without dealing with its content or meaning.
On Windows, the C runtime is a wrapper of the ...
3
votes
1answer
833 views
Py2exe with Tkinter
I'm trying to convert a basic tkinter GUI program to an .exe using py2exe. However I've run into an error using the following conversion script.
# C:\Python26\test_hello_con.py py2exe
from ...
3
votes
2answers
3k views
Resolving LNK4098: defaultlib 'MSVCRT' conflicts with
This warning:
LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts
with use of other libs; use /NODEFAULTLIB:library
is a fairly common warning in Visual Studio> I'd like to understand the exact ...
3
votes
2answers
421 views
visual c++ 2010 link against older runtime?
Sorry if this has been asked.
Just like I can select in C# project that I want it to build for .NET 2.0 runtime, is it possible for native c++ project to be built against older CRT, let's say one ...
3
votes
1answer
631 views
Private Unmanaged Side by Side Assembly Problem
We have a large MFC application that uses a number of DLLs. So far we have been using vcredist_x86.exe to install MFC and the CRT into the unmanaged side by side assembly cache (C:\Windows\WinSxS). ...
3
votes
1answer
525 views
Different versions of msvcrt in ctypes
In Windows, the ctypes.cdll.msvcrt object automatically exists when I import the ctypes module, and it represents the msvcrt Microsoft C++ runtime library according to the docs.
However, I notice ...
3
votes
3answers
2k views
Visual Studio _CrtDumpMemoryLeaks always skipping object dump
I'm trying to use the CRT memory leak detection but I keep getting the following message in Microsoft Visual Studio: "Detected memory leaks - skipping object dump." I can never get the it to actually ...
2
votes
1answer
56 views
Absurd values to main(int argc, char** argv)
I had on old C++ project starting a Console-application.
With a breakpoint in main(int argc, char** argv) started program.exe -debug.
According to the debugger argc became 32 and the strings in argv ...
2
votes
4answers
328 views
Defining _CRT_SECURE_NO_WARNINGS lead to crash in vector destructor
I am working with a legacy code ported from Visual C++ 6.0 to VC++ 9.0 (2008). I disabled the secure CRT warnings using _CRT_SECURE_NO_WARNINGS pre-processor definition. But that has lead to crashes ...
2
votes
1answer
675 views
Using version 4053 of CRT (/MD) instead of leatest greatest (5592) in DLL (VS2005 SP1)
I hope you can help me with this.
I want to build a dll (statically linking other, non-third-party libraries) using version 4053 of the CRT (/MD) instead of the latest (5592) in Visual Studion 2005 ...
2
votes
1answer
737 views
Install VC++ Runtime 64-bit if system is 64-bit
I am creating a Visual Studio 2010 Setup project for installing my application. My application works by having multiple executable for different system bitness, and detects if you are running on a ...
2
votes
2answers
550 views
C++ double division by 0.0 versus DBL_MIN
When finding the inverse square root of a double, is it better to clamp invalid non-positive inputs at 0.0 or MIN_DBL? (In my example below double b may end up being negative due to floating point ...
2
votes
3answers
802 views
Solving the multiple CRT problem
I know there are a few similar questions, but I don't think they really have the same requirements as mine.
Our DLL is compiled with Visual Studio 2005 and must link with a specific version of the ...
2
votes
2answers
330 views
How to build MTd projects which use MDd dlls in VS2005
I am building my application in Visual Studio 2005, using project properties ->c/c++->CodeGeneration->RuntimeLib: MTd (using static CRT library-LIBCMTD). The application is using 3rd party dlls and ...
2
votes
1answer
3k views
Can't find MSVCP80.dll (side by side problem?)
when I try to start the release-version of my project from visual studio 2005 (SP1) I get the following error message:
"This application has failed to start because MSVCP80.dll was not found. ...
1
vote
1answer
45 views
Mixed Managed/Unmanaged Assembly Load Order
I have some questions about the order of initialization for the CLR and the CRT for mixed .NET assemblies (i.e. meaning mixed managed/unmanaged C++ assemblies).
So if I have a mixed mode assembly dll ...
1
vote
1answer
199 views
What is the cause of “This application has requested the Runtime to terminate it in an unusual way”?
There's a common error that gets thrown by the Visual C Runtime:
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for ...
1
vote
2answers
85 views
using _set_se_translator and compilation flags
Documentation states that "You must use /EHa when using _set_se_translator.".
My question is: should /EHa be used for all files in project/ all files in project that catch exceptions or just in the ...
1
vote
2answers
125 views
C functions before mainCRTStartup on Mingw?
void start() {
stuff(); //code before mainCRTStartup
mainCRTStartup();
}
int main()
{
//other code
}
In Visual C++,it compiles fine and function "stuff()" gets called before main. How would call ...
1
vote
3answers
149 views
MSVCRT: Where is the implement (source code) of sin, cos et al?
I wonder where the implemention of basic trigonometric functions can be found in the Visual C++ CRT.
Find in files for "sin" in C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\crt shows the ...
1
vote
2answers
81 views
What's the best way to distribute your SDK if the end user is required to link against the Debug CRT?
I work for a camera company and we provide an SDK for our customers. Historically we only provided a release build of our SDK that was built against the non-debug CRT. As part of our SDK package we ...
1
vote
2answers
39 views
Are there any registry entries that indicate whether a specific C Run-Time is already installed?
I've been looking online and at my registry and I think not, but it would be nice if we could get a definitive answer on here.
Just the run time, as in for re-use on the client side.
I see it is ...
1
vote
1answer
129 views
Where is msvcrtd.dll?
Where can I find msvcrtd.dll (the debug CRT), corresponding to \WinDDK\7600.16385.1\lib\Crt\i386\msvcrtd.lib in the Windows Driver Kit?
1
vote
1answer
137 views
Can't get a NaN from the MSVCRT strtod/sscanf/atof functions
Is there any way to get NaNs from the Windows CRT string to float functions?
Why: I'm writing an IEEE float to string converter in C with no information loss (strtod, sscanf or atof return the ...
1
vote
0answers
33 views
Can I throw an exception from _CrtSetReportHook?
Assuming I'm in a C++ program, I want to convert these reports to exceptions. Is using a C++ throw statement a reasonable way to do it, or am I stuck just redirecting to stderr?
1
vote
2answers
144 views
.crt section? What does this warning mean?
I've got this warning recently (VC++ 2010)
warning LNK4210: .CRT section exists; there may be unhandled static initializers or terminators
I'm assuming this is the Critical Section. It's been a ...
1
vote
1answer
73 views
What's the name of the “create hard link” function in MSVCRT?
To fix a bug in this answer: What's the correct name of the function to create a hard link in MSVCRT?