Lines Matching +refs:clang +refs:format +refs:style

3   <style type="text/css">
7 </style>
28 Details about usage of clang for OpenCL can be found in :doc:`UsersManual`.
33 - For general issues and bugs with OpenCL in clang refer to `the GitHub issue
78 with regular clang driver they require frontend forwarding, e.g. ``-cc1``
93 $ clang -Xclang -finclude-default-header test.cl
97 to the header location. The header can be found in the clang source tree or
102 $ clang -I<path to clang sources>/lib/Headers/opencl-c.h test.cl
103 …$ clang -I<path to clang installation>/lib/clang/<llvm version>/include/opencl-c.h/opencl-c.h test…
116 …$ clang -target spir-unknown-unknown -c -emit-llvm -Xclang -finclude-default-header -fmodules -fim…
128 :ref:`-finclude-default-header <opencl_finclude_default_header>`, clang
138 $ clang -Xclang -fdeclare-opencl-builtins test.cl
155 $ clang -cc1 -ffake-address-space-map test.cl
210 documentation can be accepted in a format of a draft that can be further
216 This section explains how to extend clang with the new functionality.
221 the clang frontend source code. This also means that the associated macro
222 indicating the presence of the extension should be added to clang.
226 <https://github.com/llvm/llvm-project/blob/main/clang/include/clang/Basic/OpenCLExtensions.def>`__,
231 options ``clang::TargetOptions::OpenCLFeaturesMap`` to control the exposure
237 Note that the target extension support performed by clang can be overridden
258 <https://github.com/llvm/llvm-project/blob/main/clang/lib/Headers/opencl-c-base.h>`__).
269 there is no default functionality provided by clang.
272 changes it triggers in the parsing) should not be added to clang. Moreover, the
355 $ clang -cl-std=CL3.0 -cl-ext=+cl_khr_fp64,+__opencl_c_fp64 ...
356 $ clang -cl-std=CL3.0 -cl-ext=-cl_khr_fp64,-__opencl_c_fp64 ...
412 <https://discourse.llvm.org/c/clang/6>`_ or file `a GitHub issue
424 sources when the following clang extensions are enabled
453 The possible clang invocation to compile the example is as follows:
457 $ clang -I<path to libcxx checkout or installation>/include test.clcpp