Lines Matching full:clang
11 I run ``clang -cc1 ...`` and get weird errors about missing headers
29 $ clang -cc1 hello.c
35 ``clang -cc1`` is the frontend, ``clang`` is the :doc:`driver
41 $ clang -### -c hello.c
43 Some clang command line options are driver-only options, some are frontend-only
44 options. Frontend-only options are intended to be used only by clang developers.
45 Users should not run ``clang -cc1`` directly, because ``-cc1`` options are not
49 ``-ast-dump``, then you need to take the ``clang -cc1`` line generated by the
51 ``clang -Xclang <option> ...`` to force the driver pass ``<option>`` to
52 ``clang -cc1``.
58 Clang --- these are called builtin includes. Clang searches for them in a
59 directory relative to the location of the ``clang`` binary. If you moved the
60 ``clang`` binary, you need to move the builtin headers, too.