Lines Matching refs:Xcode

1 Running the analyzer within Xcode
7 Since Xcode 3.2, users have been able to run the static analyzer `directly within Xcode <https://de…
9 It integrates directly with the Xcode build system and presents analysis results directly within Xc…
11 Can I use the open source analyzer builds with Xcode?
18 **Viewing static analyzer results in Xcode**
23 - **Integrated workflow:** Results are integrated within Xcode. There is no experience of using a s…
24 - **Transparency:** Works effortlessly with Xcode projects (including iPhone projects).
25 - **Cons:** Doesn't work well with non-Xcode projects. For those, consider :doc:`CommandLineUsage`.
30 Xcode is available as a free download from Apple on the `Mac App Store <https://itunes.apple.com/us…
32 Using open source analyzer builds with Xcode
35Xcode uses the version of ``clang`` that came bundled with it to analyze your code. It is possible…
40 …his website) is that they are often newer than the analyzer provided with Xcode, and thus can cont…
47 …-xcode-analyzer`` that allows users to change what copy of ``clang`` that Xcode uses for analysis::
57 --use-xcode-clang Use the Clang bundled with Xcode
59 Operationally, **set-xcode-analyzer** edits Xcode's configuration files to point it to use the vers…
61 - **--use-xcode-clang:** Switch Xcode (back) to using the ``clang`` that came bundled with it for s…
62 - **--use-checker-build:** Switch Xcode to using the ``clang`` provided by the specified analyzer b…
67 - You should quit Xcode prior to running ``set-xcode-analyzer``.
68 …yzer`` under **``sudo``** in order to have write privileges to modify the Xcode configuration file…
73 **Example 1**: Telling Xcode to use checker-235::
82 **Example 2**: Telling Xcode to use a very specific version of ``clang``::
86 **Example 3**: Resetting Xcode to its default behavior::