Tagged Questions
The precompiled-headers tag has no wiki summary.
25
votes
4answers
8k views
Precompiled headers with GCC
Anyone had any success getting precompiled headers working with GCC? I have had no luck in my attempts and I haven't seen many good examples for how to set it up. I've tried on cygwin gcc 3.4.4 and ...
17
votes
4answers
772 views
Visual Studio 2010, Intellisense and PCH: what are the alternatives to ugly stdafx.h?
I recently switched to Visual Studio 2010 and for Intellisense not to take half a minute to show up when using boost libraries, Microsoft's suggestion seems to use precompiled headers.
Except that I ...
17
votes
4answers
2k views
What to put in precompiled header? (MSVC)
What are the best candidates for a precompiled header file? Can I put STL and Boost headers there, even though they have templates? And will that reduce compile times?
Also, what are the best IDE ...
17
votes
9answers
8k views
Using pre-compiled headers with CMake
I have seen a few (old) posts on the 'net about hacking together some support for pre-compiled headers in CMake. They all seem a bit all-over the place and everyone has their own way of doing it. What ...
13
votes
4answers
628 views
12
votes
4answers
4k views
Precompiled Headers
I have a sample project (not mine) which is in Visual C++ 6. I'm trying to convert it to Visual Studio 2008.
The older project is using precompiled headers. Now the questions are:
What are ...
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 ...
10
votes
6answers
1k views
What are the pros & cons of pre-compiled headers specifically in a GNU/Linux environment/tool-chain?
Pre-compiled headers seem like they can save a lot of time in large projects, but also seem to be a pain-in-the-ass that have some gotchas.
What are the pros & cons of using pre-compiled ...
9
votes
4answers
2k views
Sharing precompiled headers between projects in Visual Studio
I have a solution with many Visual C++ projects, all using PCH, but some have particular compiler switches turned on for project-specific needs.
Most of these projects share the same set of headers ...
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
3answers
149 views
Uncompile a gch file
I accidentally removed a .h file I hadn't added to version control, but I still have the .h.gch. Is there any way to uncompile the .gch?
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
7answers
1k views
Precompiled Headers? Do we really need them
Back a long time ago I used to use pre-compiled headers: a. to speed compilation and b. because I supported multiple development tools like CodeWarrior, MPW, VS, ProjectBuilder, gcc, intel compilers, ...
5
votes
5answers
3k views
Why use Precompiled Headers (C/C++)?
Quick question -- Why use Precompiled Headers?
EDIT:
Reading the responses, I suspect what I've been doing with them is kinda stupid:
#pragma once
//Defines used for production versions
#ifndef ...
4
votes
3answers
89 views
precompiled header files usage for library builders
According to this answer boost and STL headers belong into the precompiled header file (stdafx.h in the MSVC world). So I changed the headers of my dynamic link library project and moved all STL/Boost ...
4
votes
1answer
262 views
How to use precompiled header files in Android NDK
I have a .pch file which is required to compile a c++ file.
I am using Android NDK to make a library out of few c++ files and then use it in my Java programs to call library functions.
Can anyone tell ...
4
votes
2answers
277 views
What do Visual Studio's precompiled headers contain?
The question concerns the contents of the .pch binary created by the Visual Studio compiler.
What does it contain?
Is it only the parsed tree of the header files, or object code as well?
Consider ...
4
votes
4answers
200 views
#define and how to use them - C++
in a pre-compiled header if I do:
#define DS_BUILD
#define PGE_BUILD
#define DEMO
then in source I do:
#if (DS_BUILD && DEMO)
---- code---
#elif (PGE_BUILD && DEMO)
--- ...
4
votes
3answers
172 views
Pre-Compiled Header Design Question
I have code that uses a pre-compiled header. (previously done by someone else)
In it, they are including several .h files.
If I have classes that use common .h files that are not currently in the ...
4
votes
2answers
7k views
Precompiled headers and compiling universal objects on OSX
We are using precompiled headers with GCC for our project and build them like this:
gcc $(CFLAGS) precompiledcommonlib.h
Now I'm building the project on OSX 10.6 and trying to use the nifty feature ...
4
votes
4answers
4k views
How to implement precompiled headers into your project
I understand the purpose and reasoning behind precompiled headers. However, what are the rules when implementing them? From my understanding, it goes something like this:
Set your project up to ...
4
votes
4answers
2k views
Visual C++ Precompiled Headers errors
Update:
What are the effects of including stdafx.h in my header files?
I started on a C++ project in Linux/Eclipse CDT and imported it into Visual C++/Windows.
In Visual C++, I started using ...
4
votes
2answers
731 views
Precompiled headers with Autotools
Is it possible to use gcc precompiled headers in projects using automake / libtool?
Adding new make rules to build precompiled headers is not difficult. The issue is that you also have to add ...
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
1answer
150 views
Objective-C typedef enum in global constants file
OK, this is related to question "Constants in Objective C".
I created Constants.h and its corresponding Constants.m file:
// Constants.h
extern int const BOOKS;
typedef enum SSDifficultyLevel {
...
3
votes
3answers
153 views
Processing the precompiled header gives me errors I don’t understand
I am building an iOS 4.2+ game using Xcode 4.1 and Pixelwave, on OS X Lion.
At one point during the development, I did a Clean of the project, and ever since I have been unable to compile the ...
3
votes
5answers
446 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 ...
3
votes
1answer
473 views
How to use precompiled headers in Android NDK project?
I'm porting a big C++ project from Visual Studio to GCC for Android. Because of the large number of files, the compile times are glacial. I would like to setup a precompiled header file, but I find ...
3
votes
1answer
3k views
Is it OK to remove Prefix.pch file from the Xcode project?
The Xcode project generates Prefix.pch file automatically. When I deleted this file and tried to build, I got build error saying '*_Prefix.pch' file is missing.
Is Prefix.pch file is a must for ...
3
votes
1answer
362 views
Creating several precompiled header files using GNU make
I use gcc (running as g++) and GNU make.
I use gcc to precompile a header file precompiled.h, creating precompiled.h.gch; the following line in a Makefile does it:
# MYCCFLAGS is a list of ...
3
votes
2answers
352 views
Sharing Pre-compiled Headers efficiently
I have a framework which is being used by several projects (which includes several samples to show how the framework works). The framework has components such as the core, graphics, physics, gui etc. ...
3
votes
1answer
519 views
Rebuild all but precompiled headers in Visual Studio
How would it be possible to configure VC++/Solution/Projects to rebuild all but the precompiled headers?
3
votes
3answers
203 views
what is the most unobtrusive way of using precompiled headers in Visual C++?
Say I have a single project, with files A.cpp, B.cpp, C.ppp and matching header files (and that's it). The C++ files include system headers or headers from other modules.
I want to compile them to a ...
3
votes
2answers
1k views
SCons, Boost::ASIO, Windows Precompiled Headers, and Linker Errors
I'm investigating using SCons for our build process as we develop C++ for multiple platforms. I'm 99% of the way there in the build configuration, but I'm running into a VERY strange error on Windows ...
2
votes
2answers
69 views
What's the benefit of including common files in one single header file?
I was looking at the doom3 code on github and I notice something unusual. Several files have only one include for a file called idlib/precompiled.h and this file have includes for several other ...
2
votes
4answers
111 views
How does precompiled header reduce compile time
I've been using precompiled header for a while and been told (and saw) how they can reduce compile time. But I would really like to know what is going on (under the hood) so it can make my compilation ...
2
votes
5answers
69 views
Structs inside #define in C++
Being pretty new to C++, I don't quite understand some instructions I encounter such as:
#ifndef BOT_H_
#define BOT_H_
#include "State.h"
/*
This struct represents your bot in the game of Ants
...
2
votes
1answer
76 views
Pre-compiled header warnings on Linux (too short to be a PCH file)
I have a header in my project, called Core.h, that I use as a pre-compiled header:
$(CXX) $(CXX_CFLAGS) -x c++-header Core.h
Which creates a file named Core.h.gch
*#include "Core.h" is the first ...
2
votes
1answer
229 views
Use cmake to conditionally generate source input files
I'm using cmake with C++ project. I want to use precompiled headers in GCC.
I want to run cmake once and then, when running make, I want this actions to happen:
Run my custom tool (python script) ...
2
votes
2answers
870 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
194 views
Makefile/double compilation
Recently I noticed (after others have extended the project) that the compile time significantly increased. I was suggested to make use of c++ precompiled headers. The "include" parts are moved to a ...
2
votes
1answer
121 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
1answer
268 views
How to make GCC search for headers in a directory before the current source file's directory?
I am using GCC precompiled headers in my project with multi-architecture build, but things break down when I try to place it in a directory different from current source's directory.
The file is ...
2
votes
1answer
663 views
gcc precompiled headers weird behaviour with -c option
Short story:
I can't make precompiled headers work properly with gcc -c option.
Long story:
Folks, I'm using gcc-4.4.1 on Linux and before trying precompiled headers in a really large project I ...
2
votes
6answers
1k views
VS2008 win32 project defaults - remove default precompiled headers
I have been through every option to try to find a way to get the IDE to let me create a new win32pject without precompiled headers. I have read every thread on this forum with the words "precpmpiled ...
2
votes
2answers
5k views
Precompiled headers with DLL solutions. Cannot open precompiled header file
This worked without error when this solution worked off of .lib files instead of .dll files.
I have all of my projects except one currently using a precompiled header, without error. The ...
2
votes
4answers
1k views
MSVC precompiled headers: Which files need to #include “stdafx.h”?
Does every file need to #include "stdafx.h" when using precompiled headers? Or do only source files need to include it.
EDIT: Also, my precompiled header file #includes a lot of STL headers. But, in ...
2
votes
2answers
1k views
error C1854: cannot overwrite information formed during creation of the precompiled header in object file
foo.cpp(33918) : fatal error C1854: cannot overwrite information formed during creation of the precompiled header in object file: 'c:\somepath\foo.obj'
Consulting MSDN about this gives me the ...
1
vote
0answers
16 views
XCode pre-compiled headers included files - performance
Regarding the PCH file in XCode, lets say one of the headers is very large and I do not want to compile it every time so I include it here, however lets say I only use this header in 1 out of my 100 ...
1
vote
1answer
124 views
Compilation speed improvements include guards vs. precompiled headers
I want to reduce compile time on a large project. Our primary compiler is Visual Studio 2010 but some of the code gets compiled in gcc. We are currently planning to ensure that all our .h files have ...