Top "Pch" questions

Precompile Prefix Header

How to fix .pch file missing on build?

When I build my c++ solution in Visual Studio it complains that the xxxxx.pch file is missing. Is there …

c++ visual-studio precompiled-headers pch
PCH File in Xcode 6

In my previous projects, I can find the .pch file under Supporting Files. But now in Xcode 6, I couldn't find …

xcode6 pch
Implicit declaration of function - C99

I am currently using Xcode 4, and in my .pch file I have this macro: #define localize(s) NSLocalizedString((s), nil). …

objective-c xcode macros c99 pch
iOS Prefix.pch best practices

I have seen many developers that add various convenience macros to the Prefix.pch of their iOS projects. What do (…

ios objective-c xcode pch
Fixing file 'project.pch' has been modified since the precompiled header was built error in Xcode

I was recently working on my application messing around in the info.plist section, and since that my application will …

xcode info.plist pch
_int64 does not name a type

In my pch file I have the following definitions: #if (_MSC_VER < 1300) typedef signed char int8_t; typedef signed …

iphone int64 pch
Downloading a file in VBA and storing it

I need to download a file that I got from a REST search. The URL is like the following: https://…

vba rest excel pch
How do I fix unexpected end of file error with pch.h

So I have been trying to learn cpp and I was writing a program, and when I try to build …

c++ visual-studio pch
Xcode Preprocessor Output

I want to check the output of the preprocessor for some files. How can I view the preprocessor's output in …

objective-c xcode c-preprocessor pch
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 …

c++ visual-c++ precompiled-headers pch