You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'--clang' provides a way to build Xcode projects with a custom clang binary,
by adding 'CC=clangc' flag to xcode.
With '--clang-source-path', the 'run' script builds clang binary from
the clang source in the path and provides this binary path to 'runner.py'
using the '--clang' flag.
Copy file name to clipboardExpand all lines: project_future.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -584,6 +584,9 @@ def add_arguments(parser):
584
584
parser.add_argument("--report-time-path",
585
585
help='export time for building each xcode build target to the specified json file',
586
586
type=os.path.abspath)
587
+
parser.add_argument("--clang",
588
+
help='clang executable to build Xcode projects',
589
+
type=os.path.abspath)
587
590
parser.add_argument("--job-type",
588
591
help="The type of job to run. This influences which projects are XFailed, for example the stress tester tracks its XFails under a different job type. Defaults to 'source-compat'.",
0 commit comments