Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
1k 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 ...
9
votes
3answers
4k views

iPhone Prefix.pch best practices

I have seen many developers that add various convenience macros to the Prefix.pch of their iPhone project. What do (or don't) you recommend adding to the iPhone Prefix.pch file? What does your ...
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
2answers
142 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, ...
5
votes
1answer
3k 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 ...
5
votes
4answers
1k 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?
4
votes
2answers
320 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 ...
2
votes
2answers
172 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 ...
2
votes
2answers
440 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; ...
2
votes
2answers
452 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.
2
votes
1answer
1k 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 ...
1
vote
0answers
113 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
2answers
85 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 ...
1
vote
1answer
126 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 ...
1
vote
1answer
400 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: ...
1
vote
1answer
780 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
1k 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 ...
0
votes
0answers
90 views

XCode 4.2 Workspace indexing broken due to indexer not finding a path in a pch file

I'm guessing this is a stupid bug in XCode 4.2.1 but maybe someone has an idea of how to fix it? I have a workspace with three projects RestKit, B, and C. In B's pch file I have #import ...
0
votes
1answer
64 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
39 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 ...
0
votes
1answer
263 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. ...
0
votes
0answers
138 views

PCH File Errors and Warnings

I've created a new application which is based on an existing application that is already working fine. So I created a new project and pretty much copied most of the files from my old application to ...
0
votes
2answers
230 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", ...
0
votes
0answers
69 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
373 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, ...
0
votes
1answer
1k 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 ...
0
votes
1answer
95 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
787 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 ...