Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
4k views

How to handle stdafx.h in cross-platform code?

I have a Visual Studio C++ based program that uses pre-compiled headers (stdafx.h). Now we are porting the application to Linux using gcc 4.x. The question is how to handle pre-compiled header in ...
13
votes
4answers
630 views

Purpose of stdafx.h

What is the purpose of stdafx.h file and what is meant by precompiled headers.
12
votes
5answers
26k views

stdafx.h: When do I need it?

I see so much code including stdafx.h. Say, I do not want pre-compiled headers. And I will include all the required system headers myself manually. In that case is there any other good reason I should ...
7
votes
3answers
4k views

What's the use for “stdafx.h” in Visual Studio?

The stdafx.h is automatically generated when I start a project in VS2010. I need to make cross-platform C++ library, so I don't/can't use this header file. What is this for? Is it OK that I just ...
7
votes
4answers
3k views

Why does stdafx.h work the way it does?

As usual, when my brain's messing with something I can't figure out myself, I come to you guys for help :) This time I've been wondering why stdafx.h works the way it does? To my understanding it ...
6
votes
8answers
3k views

Is there a way to use pre-compiled headers in VC++ without requiring stdafx.h?

I've got a bunch of legacy code that I need to write unit tests for. It uses pre-compiled headers everywhere so almost all .cpp files have a dependecy on stdafx.h which is making it difficult to break ...
5
votes
2answers
602 views

Why am I unable to #ifdef stdafx.h?

I am trying to include 2 platform-specific stdafx.h files in my .cpp file, but the compiler is unhappy when I try to #ifdef it. #ifdef _WIN32 #include "stdafx.h" #elif _MAC #include "MAC/stdafx.h" ...
5
votes
3answers
1k views

What's with the “Afx” in StdAfx.h?

I'm just curious what Afx stands for. And what about Fx in FxCop?
4
votes
4answers
168 views

How to use stdafx.h properly?

What is the proper way to use stdafx.h, in terms of separating dependencies? If I put everything in there, then my compiles are blazing fast, and all I need to say in any file is #include "stdafx.h" ...
4
votes
1answer
371 views

Question about precompiled headers in Visual C++

If I put a header (a.h) into stdafx.h and that header includes another header (b.h) that is not mentioned in stdafx.h, will b.h be visited every time someone includes a.h or is it compiled in as part ...
3
votes
5answers
449 views

stdafx.h cross platform without issues?

Hey i've been following learncpp.com tuts for the last couple days, they say to comment out "#include "stdafx.h" from .cpp files for Code::Blocks. Is that a must, to remove the include line? What ...
2
votes
2answers
893 views

include stdafx.h in header or source file?

I have a header file called stdafx.h and this one is precompiled of course. I've read that I should include these files into my .cpp files, but some of these statements are already needed in the ...
2
votes
1answer
122 views

If a particular header already included in stdafx.h - do I need to (have to/should to) to explicitly include it in a .cpp file?

If a particular header is already included in stdafx.h - do I need to (have to/should to) to explicitly include it in a .cpp file (which already includes the stdafx.h) ?
2
votes
2answers
372 views

StdAfx + Header file - Order of inclusion in MFC application

I am using Visual Studio 2005. I created an MFC based console application named "StdAfx dependancy". The IDE created the following files for me. Resource.h StdAfx Dependancy.h stdafx.h StdAfx ...
2
votes
2answers
273 views

c++ fatal error c1083 project was fine before, what now?

I have a (com) c++ project, which uses a (.net) c++ dll. The project was compiling and running ok. Now, all I did was make changes to the dll, and I'm getting a fatal error c1083- cannot open include ...
1
vote
3answers
2k views

Memory leaks detection while using Boost

I would like to get the memory leaks information using _CRTDBG_MAP_ALLOC, and especially the files and line numbers, but I don't get them at the end. I only get something like this: {130} normal ...
0
votes
2answers
286 views

A question about stdafx.h

hey i just have a quick question. ive noticed that i dont have stdafx.h in my compiler(mingw32 on windows) am i supposed to have it? or maybe is there a way to get around it? thanks for reading ...
0
votes
7answers
2k views

Intellisense in vs2010 with c++

I can't get intellisense to work. Even if I start with an empty project and add just one file to it with only an include for iostream and an int main() function that prints a char with cout (basically ...
0
votes
2answers
592 views

C++ cannot find stdafx.h

My program was working fine until I decided to rename one of the directories in where I have my projects. I tried changing the name back to the original but now it's giving me problems where it can't ...
0
votes
1answer
285 views

how do i shot stdafx.h?

I am using Visual Studio 2010 to make a 3D model in C++ and OpenGL. I started a project on my home pc, and then decided to put it in a repository, so that I could get the code for development on my ...