4

I want to see the commands Xcode executed when I press "Build" on Xcode. Those commands should be like xcodebuild and such.

I tried to find it at Xcode > View > Navigators > Show Report Navigator (related post), but I can not find the keyword xcodebuild inside. I want to see the parameters Xcode used for xcodebuild.

Am I able to do that?

allenlinli
  • 2,066
  • 3
  • 27
  • 49

1 Answers1

3

Apparently, Xcode doesn't use xcodebuild in the build process. (If you think about it, the xcodebuild command is user-facing and part of the Xcode command-line tools, but those aren't required to be present to build and/or run something in it.) Here's the entirety of this very short answer:

You can't. Xcode itself doesn't invoke xcodebuild during the build process. This post has more information on executing xcodebuild to build for the simulator.