• Home
Name Date Size #Lines LOC

..--

INPUTS/03-May-2024-1,013915

bindings/03-May-2024-5,9744,296

docs/03-May-2024-29,44822,261

examples/03-May-2024-463292

include/03-May-2024-176,719103,590

lib/03-May-2024-595,072420,122

patches/03-May-2024-2,0722,051

runtime/03-May-2024-442271

test/03-May-2024-597,497369,321

tools/03-May-2024-34,10625,875

unittests/03-May-2024-28,58123,552

utils/03-May-2024-13,36610,230

www/03-May-2024-24,21822,009

.arcconfigD03-May-202475 54

.clang-formatD03-May-202419 21

.gitignoreD03-May-20241.4 KiB3632

Android.mkD03-May-2024661 3530

CMakeLists.txtD03-May-202415.8 KiB481405

CODE_OWNERS.TXTD03-May-20241.2 KiB4534

INSTALL.txtD03-May-20242.1 KiB5036

LICENSE.TXTD03-May-20242.7 KiB6448

MODULE_LICENSE_BSD_LIKED03-May-20240

MakefileD03-May-20243 KiB12270

ModuleInfo.txtD03-May-202496 65

NOTES.txtD03-May-20244.3 KiB11280

README.txtD03-May-20241.2 KiB2720

clang-host-build.mkD03-May-20241 KiB4332

clang-tblgen-rules.mkD03-May-202412.7 KiB230194

clang-version-inc.mkD03-May-20241.6 KiB3626

clang.mkD03-May-2024306 86

host_shared_clang.mkD03-May-2024898 4331

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.cs.uiuc.edu/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