Name Date Size #Lines LOC

..08-May-2022-

INPUTS/H08-May-2022-1,013915

bindings/H08-May-2022-7,5335,439

cmake/H08-May-2022-1,6091,377

docs/H08-May-2022-66,47151,174

examples/H08-May-2022-979700

include/H08-May-2022-296,424179,190

lib/H08-May-2022-1,083,363779,735

runtime/H08-May-2022-174150

tools/H08-May-2022-54,79242,022

utils/H08-May-2022-31,51723,957

.clang-formatH A D08-May-202219 21

.clang-tidyH A D08-May-20221.2 KiB2523

.gitignoreH A D08-May-20221.2 KiB3731

CMakeLists.txtH A D08-May-202233.1 KiB910778

CODE_OWNERS.TXTH A D08-May-20221.4 KiB6348

INSTALL.txtH A D08-May-20222.1 KiB4935

LICENSE.TXTH A D08-May-202214.8 KiB279229

ModuleInfo.txtH A D08-May-202296 65

NOTES.txtH A D08-May-20224 KiB10576

README.txtH A D08-May-20221.2 KiB2720

README.txt

1//===----------------------------------------------------------------------===//
2// C Language Family Front-end
3//===----------------------------------------------------------------------===//
4
5Welcome to Clang.  This is a compiler front-end for the C family of languages
6(C, C++, Objective-C, and Objective-C++) which is built as part of the LLVM
7compiler infrastructure project.
8
9Unlike many other compiler frontends, Clang is useful for a number of things
10beyond just compiling code: we intend for Clang to be host to a number of
11different source-level tools.  One example of this is the Clang Static Analyzer.
12
13If you're interested in more (including how to build Clang) it is best to read
14the relevant web sites.  Here are some pointers:
15
16Information on Clang:             http://clang.llvm.org/
17Building and using Clang:         http://clang.llvm.org/get_started.html
18Clang Static Analyzer:            http://clang-analyzer.llvm.org/
19Information on the LLVM project:  http://llvm.org/
20
21If you have questions or comments about Clang, a great place to discuss them is
22on the Clang development mailing list:
23  http://lists.llvm.org/mailman/listinfo/cfe-dev
24
25If you find a bug in Clang, please file it in the LLVM bug tracker:
26  http://llvm.org/bugs/
27