The pch tag has no wiki summary.
1
vote
1answer
55 views
How to prevent the need for importing a framework in each class?
I have a framework called Parse, which is used in almost each Viewcontroller that I have. How can I prevent the need to put an import statement in each class, like #import Parse/Parse.h
??
I heard ...
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 ...
10
votes
2answers
224 views
users own pch (clip) in r [duplicate]
Possible Duplicate:
How to use an image as a point in ggplot?
Is it possible to have user defined pch (clip art or icon or other type of file) used as point in R base or ggplot or other ...
0
votes
1answer
35 views
VSC++2010: -Zm135
I would like to read detailed description of -Zm135 Visual Studio 2010 command line option.
Briefly, this is an option to set when virtual memory for PCH is exceeded. Additionally, what is a meaning ...
-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
0answers
63 views
imports of *.pch files are ignored for new classes - why?
I have a project created with Xcode 3 and now want to update it using Xcode 4.3.
I used a *.pch file which works great - however on all the new classes I create now in Xcode4.3 this pch is ignored ...
1
vote
0answers
237 views
Objective-C NSLog variant: __FILE__ without fullpath and output without datetime
For debugging purposes I've added this code to my .pch.
Although I'm pretty satisfied with the output, I would like to improve the way I print the filename (without the full path) when I use __FILE__ ...
2
votes
1answer
852 views
Including a constants.h file in Prefix.pch breaks code completion, syntax highlighting
My application has many constants (kvo keys, enums, etc.) that are used by almost every class. I have a constants.h file with all of them. I want include this file in the Prefix.pch file as follows:
...
0
votes
1answer
95 views
Xcode 4 gcc failure on Archive build: skips precompile step? (also after cleanup)
as many others i face the problem that my xcode (4.3.2) tells me:
cc1obj: warning: ...
7
votes
2answers
460 views
How to fill a single 'pch' point on the plot with two-colours?
If you take the code below, how can you change the filling of the third diamond, so it will be half-black, half-white? The solution should apply with any colors.
data <- c(1,2,3)
plot(data, ...
2
votes
0answers
297 views
clang(libclang) performance of parse/reparse Translation Unit
I have a question about parsing performance, when using clang(libclang) and particulary function clang_parseTranslationUnit and clang_reparseTranslationUnit.
I'm trying to optimize the process, but ...
1
vote
1answer
342 views
How to change .pch file location(Visual Studio 2008)?
my project has a lot of pch files.
So, when I build projects, it makes .pch files a lot at Local\Temp\c\Vs2008...
Because I have small capacity harddisk, I want to change the destination of .pch file ...
0
votes
1answer
168 views
Lots of imports in .pch file
I've started working on a project that has a shed load of imports in the pch file.
Why would someone do this? Lazyness?
I guess if I refactor them out, I could potentially decrease compile ...
3
votes
2answers
357 views
How can I prevent Xcode 4.2 from filling my boot drive with preamble.pch files?
There's an issue in Xcode 4.2, where Xcode will fill my boot drive with tens of GB of preamble.pch-****** files, someplace within /private/var/folders/.
Does anybody know how to prevent this from ...
1
vote
2answers
383 views
Defining a macro in PCH file giving warnings
I have following macro in my PCH file.
#ifdef DEBUG
#define MYLOG(...) NSLog(__VA_ARGS__)
#else
#define MYLOG(...) MYSERVERLOG(MYObject.enableLogging, __VA_ARGS__)
#endif
#define ...
4
votes
2answers
3k views
_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 short int16_t;
typedef signed int int32_t;
...
0
votes
1answer
841 views
Objective-C: Xcode Prefix Header (.pch file) redundant #import
Can't I leave out #import "foo.h" in .m file if it's already in the prefix header?
The product still builds successfully when I leave it out. But, I've noticed that the Xcode templates keep them in. ...
19
votes
2answers
18k views
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).
When I try to use this macro in some .m file, I receive this warning: Implicit ...
1
vote
1answer
431 views
xcode: share .pch file for 2 targets
I published lite version of my iPhone-app and is in the store. Now, I want to add the code for the 'full' version and am stuck at a point.
After adding the second target in the project, the lite ...
19
votes
2answers
2k views
XCode 4 Archiving Error: one or more PCH files were found, but they were invalid
Documenting an odd XCode 4 Error here for future reference:
"one or more PCH files were found, but they were invalid"
Cleaning does not fix the issue, you need to clean the Build Folder by holding ...
12
votes
4answers
4k views
Xcode 4 preprocessor output
I want to check the output of the preprocessor for some files. How can i view the preprocessor's output in Xcode 4?
0
votes
2answers
522 views
using .pch files with libclang api's
I am trying to use .pch as illustrated in the following example at http://clang.llvm.org/doxygen/group__CINDEX.html but it doesnot seem to work.
char *args[] = { "-Xclang", ...
3
votes
2answers
3k views
<AppName>.pch file usage
What is the importance of .pch file and what is the significance of"#ifdef OBJC"?
Also, where do we define parameters like "#ifdef IS_PRODUCTION" which are checked in .pch file.
1
vote
1answer
642 views
GHUnitIOS Build error
I have been trying to get gh-unit working in an iOS project and I am getting a weird build error. I am using the 4.2 iOS SDK and XCode 3.2.5.
I followed this tutorial:
...
0
votes
0answers
93 views
PCH Error in UIKit
I started a project under ios 4.1 sdk, it was compiling properly. Now I moved to a new MB (using ios 4.2 sdk) and I am facing a link error on UIKit.
Surprisingly, UIKit Framework is referenced in ...
0
votes
2answers
554 views
XCode precompiling pch twice; second time with wrong language
I have an Objective C project in XCode. When building, XCode precompiles my prefix PCH file twice. The first time, it uses the arguments -x objective-c-header, and it works fine. The second time, ...
2
votes
2answers
1k views
Xcode PCH issue - Items in PCH Not Included in Source Files
I just created a "C++ Standard Dynamic" library project using Xcode and compiled using LLVM 2.0. I notice that the PCH file contains the line #include <iostream> but the file Test.cp also ...
1
vote
3answers
3k views
Errors Compiling Prefix.pch file, Causing bigger problems
Update 2
I discovered that if I change the "Base SDK" to "iOS Simulator 3.2" (iPad ???) it does not give me this error when doing Build & Analyze... But this is supposed to be an iPhone App. I am ...
-1
votes
1answer
2k views
XCode PCH Errors
From what I can tell, this has not been asked before. I am building a cocoa touch static library and I have been going along fine until yesterday, right after I checked the project into SVN, it no ...
35
votes
3answers
11k views
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 (or don't) you recommend adding to the iOS Prefix.pch file? What does your Prefix.pch ...
2
votes
1answer
2k views
Objective-C Xcode: Prefix.pch question?
I have two files independant on each other.
Let's just call it Class1 and Class2.
In Class1, I need Class2, and in Class2 I need Class1.
I have a prefix file where I include all my files, and I get ...
6
votes
2answers
520 views
can i use multiple PCH files in 1 project?
I want to use the PCH file to speed up the build, so i store the PCH file in a separate folder and reuse it when build the project later.
but I have some #import *.dll in my stdafx.h. so if something ...
0
votes
1answer
126 views
bleeding-edge libraries and precompiled headers sizes
Q1: My GCC precompiled header takes up 150 mb -- yes I'm using obscure TMP libraries from Boost. Anyone have any tips of benefiting from a PCH this large ? any makefile snippets which I could use to ...
-1
votes
2answers
1k views
C++ / CLI Precompiled Headers: How do they work?
I'm trying to write a mixed-mode DLL, let's call it 'Client', to replace some unmanaged classes with their managed equivalents. Everything works fine on my personal machine, but when I check the ...
14
votes
4answers
4k 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 ...
