0
votes
I want tell the VC++ Compiler to compile all code. Can it be done?
One way to ensure your functions are not discarded is to export them. You can do this by adding __declspe …
7
votes
How to improve link performance for a large C++ application in VS2005
If you're using the /GL flag to enable Whole Program Optimization (WPO) or the …
0
votes
Visual Studio 2003 Merge Modules
I would expect the merge modules for MFC 7.1 to be in %ProgramFiles%\Microsoft Visual Studio .NET 2003\redist, assuming that you have Visual Studio 2003 installed. (However, I can't ve …
9
votes
C/C++ source file after preprocessing
cl.exe, the command line interface to Microsoft Visual C++, has three different options for outputting the preprocessed file (hence the inconsistency in the previous responses about Vi …
3
votes
Where can I find MSCVR80.DLL v8.0.50727.3053 ??
A thread on the MSDN forums pointed out the answer: …
4
votes
How to make OpenGL apps in 64-bits windows
The 64-bit OpenGL import library is included in the Windows SDK and gets installed to %ProgramFiles%\Microso …
2
votes
Detecting precompiled headers
If Visual C++ defined a constant to indicate whether precompiled headers were in use, it would probably be listed in P …
