The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
93 views

Why I am getting this error in c++ code

I have this simple code: std::ifstream ifs; ifs.open ("test.txt", std::ifstream::in); char c = ifs.get(); while (ifs.good()) { std::cout << c; c = ifs.get(); } ifs.close(); But I am ...
4
votes
2answers
48 views

Getting started with PCH in a VC++ project

I'm working on a VC++ project in VS 2012 that takes about 8-10 minutes for a full compile. I know PCH can speedup compile times by upto 10x. I have currently disabled PCH in my project and I'm ...
0
votes
2answers
35 views

Precompiled header file for shared library project using GCC

I am trying to create a precompiled header file for my shared library using GCC. After making the necessary configuration and trying to build, I got these warnings: cc1plus: warning: ...
-2
votes
1answer
35 views

Deleted .pch file by mistake

I have deleted my .pch file by mistake, and now my project cannot be built anymore. What should I do?
4
votes
2answers
92 views

Collect common includes in a single file - good practice?

I am trying to learn how to deal with a lot of includes, and still keep my code tidy. I am programming a Qt application and I have put files commonly used (and that doesn't change) in a file called ...
0
votes
1answer
19 views

Gyp precompiled headers for xcode

How do you specify precompiled headers for xcode with gyp, specifically xcode 4.6 with clang. I only see visual studio options. 'msvs_precompiled_header': 'stdio.h', 'msvs_precompiled_source': ...
2
votes
1answer
113 views

Eclipse CDT - Precompiled Header

I am looking for a straight forward way to use precompiled headers for a C++ project using Eclipse / CDT. The stuff does work when running from command line but I am looking for an easy way to ...
0
votes
0answers
41 views

How to use two precompiled headers. One for managed and one for unmanaged code. xxx.pch is not a valid precompiled header file

I have mixed C++ project (managed and unmanaged). The unmanaged is using lots of libraries such as boost. They are all included in the stdafx.h file. I am trying to have two separate precompiled ...
2
votes
1answer
48 views

Precompiled headers, re-including files and Intellisense

I have a precompiled header that contains includes for various 3rd party libraries, e.g.: #ifndef PRECOMPILED_H #define PRECOMPILED_H #include "booststuff.h" #include "luastuff.h" #endif Where ...
1
vote
2answers
64 views

VS2012 precompiled headers: how does my .h file know about includes in stdafx.h?

I have a very basic project in VS2012 using precompiled headers. I know that I'm supposed to add all "common" includes to stdafx.h and that I need to include this in each .cpp file. Thus, the basic ...
1
vote
0answers
85 views

CMake (cotire) precompiled headers and disable warnings

I'm using cotire(https://github.com/sakra/cotire) plugin for CMake, which handles several nice things related to compilation speedup(for example precompiled headers). The problem is that I include ...
0
votes
1answer
55 views

pre-processor #defines and how to use globally without a pre-compiled header?

The development I have done over the last few years uses a lot of pre-compiled headers. One for each product. The pre-compiled headers are used in a way to #define items that each product needs. This ...
79
votes
9answers
5k views

How to fix PCH error?

When I try to build my app in Xcode, I get this error message: PCH file built from a different branch ((clang-425.0.24)) than the compiler ((clang-425.0.27)) It doesn't happen before, but this ...
0
votes
3answers
293 views

Hello World (C and C++) for WinCE application - Visual Studio 2008

I'm a beginner for Visual Studio 2008 (32-bit). The WinCE version I'm using is 7.0 Evaluation. I created a new project as, New Project -> Platform Builder-> OS Design Selected the BSP as, ...
1
vote
0answers
53 views

Using /YC and /MP together in a Visual Studio 10 project

I'm trying to get around the limitation of /YC and /MP being mutually exclusive. I'd like to leverage precompiled headers AND multi-process compilation. My answer so far has been to create 2 projects ...
1
vote
2answers
78 views

Multiply Defined Symbols with Precompiled Header?

Well, I have been struggling with this for days now. I am writing a custom game DLL for CryENGINE from scratch, and I cannot even get the solution compile with one simple class (Game.cpp) and a ...
2
votes
1answer
80 views

Rebuild only if the source was modified by a previous command

I have a python script which extracts information from a C++ source file and writes it to a header file. Whenever this generated header changes (which happens rarely), I want to re-compile it (via the ...
0
votes
0answers
24 views

Is including subsets of files in a precompiled header more efficient?

Let's say there is a system header such as windows.h, of which the contents are: #include <filesystem.h> #include <networking.h> #include <security.h> #include <gui.h> You ...
0
votes
1answer
69 views

Can I share a precompiled header between projects to reduce compile time?

I have nearly 200 projects in Visual Studio and it takes too long to build them all. I notice that building stdafx.cpp (the precompiled headers) for each project is slow. I'm using the same header for ...
3
votes
1answer
257 views

Compile C files in C++ project which do not use precompiled header?

Can I disable precompile header for .c files in my C++ project? I'm getting these errors when I want to add the .C files to my program for a scripting virtual/abstract machine which is in C: Error ...
1
vote
0answers
49 views

Should I include stdafx.h within my static library? What format should my library be?

I am creating a static library. I have gone through the win32 application, static library, no precompiled headers. The file is a .cpp I am assuming that I can export this to the actual .lib file, or ...
1
vote
2answers
449 views

How to use precompiled headers in Qt project

My IDE: Visual Studio 2010, I use Qt add-in for VS, Qt ver. 4.8.1 I have faced with the problem while trying to create precompiled header(pch) in my Qt project. My usuall approach for creating ...
0
votes
0answers
71 views

Sharing precompiled headers between projects in Visual Studio 2010

Very much the same question as: Sharing precompiled headers between projects in Visual Studio I have a large solution with ~200 projects. I want to share a precompiled header between them in order ...
6
votes
3answers
308 views

GCC build time doesn't benefit much from precompiled headers

I have a huge project, something about 150 000 LOC of C++ code. Build time is something about 15 minutes. This project consists of many sub-projects of different sizes. I have built separate ...
0
votes
1answer
211 views

“warning C4350: behavior change” when including <string> and no precompiled header

Warning C4350 says "A non-const reference may only be bound to an lvalue". I think since C4350 is off by default I haven't found much out there on it. I have read this post and it makes sense: ...
1
vote
1answer
86 views

GNU make automatically deletes precompiled header

I'm trying to get a precompiled header to speed up my build using gmake and GCC. The .gch file is created, but for some reason it's automatically removed as soon as the build completes. Here are the ...
1
vote
1answer
389 views

No speedup with precompiled headers on gcc (but large speedup with visual studio)

I'm working on a large project that must builds under multiple environment, chiefly linux/gcc and windows/msvc. To speed up the build, we use precompiled headers. The Windows implementation is very ...
1
vote
1answer
232 views

c++ precompiled header defined in a header VS2010. Compiler can't find

I've inherited some code that did something like this, Header: HeaderFile.h #ifndef HEADERFILE_H #define HEADERFILE_H #ifndef HEADERFILE_PCH_H #include<LibStuff> #include<LibStuff2> ...
1
vote
3answers
395 views

Visual studio forces to include precompiled header file in all compilation units of the project?

When compiler compiles source (e.g. *.cpp) file, it creates object file (e.g. *.o), so that later it will be linked to other .o and .so (.lib files for Windows) files and will constitute the ...
1
vote
1answer
556 views

GCC and Precompiled Headers

After reading this nice article (The Care and Feeding of Pre-Compiled Headers), I have some doubts regarding how these can actually work in real life. More specifically, how can I know that I need to ...
2
votes
2answers
146 views

Compiling cpp with precompiled headers

Suppose you have 2 files: A.h and A.cpp, where A.cpp includes A.h You precompile your header to A.h.gch and delete A.h Having 2 files: A.cpp and A.h.gch, How do you compile a final ...
3
votes
3answers
838 views

Why building a DLL without precompiled headers causes a weird error when used?

In summary: Today I discovered that when a DLL is built without precompiled headers, a strange error shows when you try to use it. Building the DLL goes fine when precompiled headers are disabled. ...
-1
votes
1answer
93 views

Does visual C++ check if it needs to re-generate its pch if I use /Yc

It seems that when I set the option to /Yu, it just uses whatever pch there is, without checking if it needs to be updated, meaning it would keep a list of headers it precompiles and check if those ...
1
vote
1answer
100 views

Disable language extensions, #ifndef fails

This question refers to Visual Studio C++ 2010. If I disable language extensions, even the simplest toy program gets an error of "unexpected end-of-file found" when I include even an empty .h file. It ...
11
votes
3answers
1k views

xCode 4.4 does not get all the .pch file headers imports?

This is my .pch file - // // Prefix header for all source files of the 'English Club' target in the 'English Club' project // #import <Availability.h> #ifndef __IPHONE_4_0 #warning "This ...
4
votes
2answers
284 views

What is the difference between “Create Precompiled Header” (/Yc) and “Use Precompiled Header” (/Yu) in Visual Studio?

I read the documentation in MSDN, but in the end I didn't get a clear idea what is the practical difference between them, exactly. Both seem to require stdafx.h to be added at the top of every *.cpp ...
0
votes
1answer
201 views

How do I make precompiled headers work on Netbeans?

Question as title. Netbeans does not offer pre- or postbuild steps and also does not offer this setting by default. Is there any convinient way I can make this work or can I edit some configs? I ...
1
vote
2answers
560 views

Precompiled Headers in Header Files

I ran into precompiled headers today for the first time..forever changing my life. I can't believe compiling my C++ code could be that fast. It makes total sense now.. Anyway, one thing that is ...
0
votes
1answer
233 views

Common (automatically included) headers in Androin NDK build?

I want to set up common header files to be included automatically into every include/source file in the project. I have to build with ndk a large cocos2d-x project which compiles in Xcode and has some ...
0
votes
2answers
140 views

How to check programmatic by preprocessor directive whether a pre-compiled header is required in Visual C++?

Sometimes it would be useful to know whether the compiler requires a pre-compiled header or not, and how the header file is called. My goal is to add some preprocessor directives like this: #ifdef ...
0
votes
2answers
120 views

Why do I need to include the precompiled header in all the files in C++?

If I don't include the stdafx even in an empty .cpp, I get this error fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "StdAfx.h"' to ...
0
votes
0answers
129 views

xcode generates huge object file using precompiled header?

I ran into a problem that xcode generates huge object files when using precompiled header. The project using a precompiled header "stdafx.h". it includes almost everything of boost. The object file of ...
0
votes
2answers
569 views

How to put macros and constants into .pch file in an iOS project?

I heard that the .pch is good for putting macros and constants definitions, so for its default content: #import <Availability.h> #ifndef __IPHONE_4_0 #warning "This project uses features only ...
4
votes
0answers
575 views

cc1plus.exe crash when using large precompiled header file

I'm having an issue using precompiled header files with MinGW. The compiler seems to find the precompiled header file but cc1plus.exe crashes immediately after (cc1plus.exe has stopped working). I've ...
1
vote
1answer
572 views

How do I add a precompiled header file to my ios project?

I'm looking to create a precompiled header file, to avoid having to include the same debug and tracking libraries in every header in the project. I've created a file called -Prefix.pch: #ifdef ...
1
vote
1answer
96 views

Incorrect stack trace with GCC + precompiled header

I'm debugging a project that uses precompiled headers under GDB. While inspecting crash stack trace, I found that GDB prints correct functions names but incorrect file and line number information. ...
0
votes
1answer
126 views

speedup template function compiling

I have problem with extremely long compiling time on my C++ code where I use some template functions from external library. Example: //fun.h template <class T> T fun(T in){ ... } //main.cpp ...
0
votes
2answers
450 views

In GCC, can precompiled headers be included from other headers?

When I compile a c++ file that includes a precompiled header, everything works as expected // test.c++ #include <precompiled.h> #include <header.h> main() {} > g++-4.7 --std=c++11 ...
1
vote
0answers
65 views

What does this compiler warning mean? “had text segment at different address”

I'm cross compiling a project on a Mac running Lion, using GCC for an ARM target. I'm using precompiled headers and getting this warning for every object that compiles against my PCH: cc1plus: ...
0
votes
1answer
89 views

Precompiled headers and editing header files

I'm using a precompiled headers in my project. precompile.h includes both *.h files I created and many *.h files from libraries that I never rebuild. My question is that every time I edit one of my ...

1 2 3 4