Lines Matching +full:xcode +full:- +full:version
4 # want to the use the system version of Python on Mac OS X.
9 print "set-xcode-analyzer requires Python 2.7 or later"
33 # versions of Xcode set EXEC_PATH to be CLANG_ANALYZER_EXEC.
57 print " (-) Cannot update file:", why, "\n"
59 print " (-) Cannot update file:", why, "\n"
66 parser.add_option("--use-checker-build", dest="path",
67 … help="Use the Clang located at the provided absolute path, e.g. /Users/foo/checker-1")
68 parser.add_option("--use-xcode-clang", action="store_const",
70 help="Use the Clang bundled with Xcode")
73 …parser.error("You must specify a version of Clang to use for static analysis. Specify '-h' for de…
75 # determine if Xcode is running
77 if x.localizedName().find("Xcode") >= 0:
78 print "(-) You must quit Xcode first before modifying its configuration files."
91 print "(+) Using the Clang bundled with Xcode"
96 xcode_path = subprocess.check_output(["xcode-select", "-print-path"])
100 if (xcode_path.find(".app/") != -1):
102 # of the Xcode.app subtree.
111 print "(-) No compiler configuration file was found. Xcode's analyzer has not been updated."