• Home
Name Date Size #Lines LOC

..--

INPUTS/03-May-2024-1,013915

bindings/03-May-2024-7,5335,439

cmake/03-May-2024-1,4781,257

docs/03-May-2024-77,29558,878

examples/03-May-2024-962687

include/03-May-2024-286,732172,598

lib/03-May-2024-1,062,069764,026

runtime/03-May-2024-172148

test/03-May-2024-1,679,841910,147

tools/03-May-2024-53,55940,964

unittests/03-May-2024-108,66091,577

utils/03-May-2024-29,85422,676

www/03-May-2024-29,39326,984

.clang-formatD03-May-202419 21

.clang-tidyD03-May-20241.2 KiB2523

.gitignoreD03-May-20241.4 KiB4135

CMakeLists.txtD03-May-202432.7 KiB902771

CODE_OWNERS.TXTD03-May-20241.4 KiB6348

INSTALL.txtD03-May-20242.1 KiB4935

LICENSE.TXTD03-May-202414.8 KiB279229

ModuleInfo.txtD03-May-202496 65

NOTES.txtD03-May-20244 KiB10576

README.txtD03-May-20241.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