0
votes
2answers
87 views
Precompiling standard library header files - C++
In my project several STL headers are used in different files. I read that, putting all these headers into a single header and using that header in my files will allow compilers to precompile the …
1
vote
1answer
37 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 …
0
votes
1answer
29 views
Getting rid of pre-compiled headers
OK, I have old Metrowerks code for Mac and Windows where the previous developer used pre-compiled headers for every project that this code base builds.
How does one get rid of Pre-compiled headers, …
2
votes
5answers
114 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 …
0
votes
1answer
37 views
Is including resource.h in precompiled header a good idea?
The VS-IDE will write //{{NO_DEPENDENCIES}} to resource header files.
This comment is actually a feature that prevents (unnecessary) rebuilding of cpp files that include the resource header.
But, …
0
votes
2answers
39 views
Possible to use precompiled headers with MIDL generated files?
We do have a project wich uses the MIDL tool to create specific header/iid and proxy files. Those files are compiled and linked with the rest of the project using a post build step that calls nmake.
…
0
votes
3answers
34 views
What is this error code for?
Error 1 fatal error C1083: Cannot open
source file:
'FpDebug/BalanceGrabber.pch': No such
file or directory c1xx
1
vote
3answers
85 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 …
0
votes
2answers
156 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 …
0
votes
3answers
86 views
How to fix a C1010 error without turning off precompiled headers?
So,
I have to use precompiled headers in my VS 2005 project. Now I have a shared source file that does not have a #include "stdafx.h"... How can I include the shared source file in my project without …
1
vote
3answers
208 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 …
1
vote
3answers
130 views
Problem with makefile making .gch files instead of.o files
So, I'm making a program to test the efficiency of certain data structures. I have all the .h files and I made a very terrible makefile that probably is wrong, although it seems to work up to a …
1
vote
1answer
56 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 …
1
vote
4answers
293 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 …
6
votes
7answers
1k 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 …
