1

When Xcode Xcode compiles it displays something like compiling 28 out of 68 source files

How can I find out which file it is currently working on?

halfer
  • 19,824
  • 17
  • 99
  • 186
user387184
  • 10,953
  • 12
  • 77
  • 147

1 Answers1

1

In Xcode, hit cmd+7 to show log navigator, the top one is the log for current task, you can click the log and see the status. It will show which file are compiled and which one is compiling.

Bryan Chen
  • 45,816
  • 18
  • 112
  • 143
  • By the way, so when it shows a rather small file at the end it is done compiling and is doing the linking? – user387184 Feb 10 '13 at 10:02
  • maybe it is a random but in the linker... you can try to compile the source file using command line. the log also shows the command executed and you can just copy and paste it to terminal to run it again. – Bryan Chen Feb 10 '13 at 10:28