I want to check the output of the preprocessor for some files. How can i view the preprocessor's output in Xcode 4?

link|improve this question

60% accept rate
1  
Since "Preprocess" and "Show Assembly Code" commands were available in Xcode 3 we should file bug reports about Xcode 4 regarding this missing feature to Apple. – MacMark May 12 '11 at 9:00
feedback

4 Answers

up vote 5 down vote accepted

Xcode 4.1 features now "Preprocessor or Assembly Output". All be happy!

link|improve this answer
1  
Which is in "Product" > "Generate Output". – Chris Burt-Brown Dec 1 '11 at 10:15
I seem to get an empty file when I do this. Is the output actually going to some non-obvious place? – Uncommon Mar 26 at 18:43
1  
It will only show the preprocessed file after successful compilation - which defeats my purpose which is to debug preprocessing macros... – e_x_p Apr 9 at 5:37
feedback

You can choose the "Show the Assistant editor" view in the top right set of buttons in the toolbar.

Then, in the new editor pane that comes up on the right-hand side you can click the little suit and bow-tie icon at the top of the pane and choose the "Generated Output" option from the drop-down.

From there you can choose to view either the pre-processor output or the assembly output.

link|improve this answer
You can even have a second assistant editor with the assembly output at the same time. Such an awesome feature. – Tim Rupe Jul 1 '11 at 20:13
Which version of Xcode do you use? – MacMark Jul 2 '11 at 7:53
Not that I think of it, this feature might be in the preview of Xcode 4.2. – Tim Rupe Jul 5 '11 at 18:23
feedback

You can always just run the preprocessor on the files from the command line using the -E flag with llvm-gcc (this is what Xcode 4 uses as a replacement for GCC). Something like this:

llvm-gcc -E -o output.preprocess input.c

Then you can just open up the output file in a text editor.

link|improve this answer
Most of the time, this alone won't cut it; the #include paths need to be defined, for example. You probably have to dig into the build log to figure all the right command line options, but in theory this will get you there. – benzado May 25 '11 at 18:31
feedback

I did not find any way too. Seems that "Preprocess" feature is missing in Xcode 4. I haven't read any document from apple, where they mentioned anything about this.

Following uri might help you: http://pilky.me/view/15

link|improve this answer
When I wrote the above information, it was quite correct. But I understand it was not an answer as I had no privileges to add comment and I wanted to MacMark let know features he is looking for are missing. Ok, now above information are no longer valid for Preprocessed/Assembly output, I am now using Xcode 4.0.2. Users can follow Steven Hepting answer as well as select menu "Product", then select option "Generate Output" then "Generate Preprocessed File" or "Generate Assembly File". Hope this information helps users not to misunderstand above information. – Learner Jul 2 '11 at 11:06
I am using Xcode 4.0.2 (Build 4A2002a) and do not see either option you describe, not in the "Product" menu (no "Generate" item of any kind) nor in the "little suit and bow-tie" popup that Steven Hepting describes. – SteveCaine Jul 22 '11 at 18:31
@SteveCaine: I have updated my Xcode and now checked that at the moment I am using Xcode Version 4.2 (Build 4C104). And Product/Generate Output options are available here. Sorry If my previous comment gives you wrong-information. – Learner Jul 25 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.