• Home
Name Date Size #Lines LOC

..--

INPUTS/03-May-2024-1,013915

bindings/03-May-2024-6,1484,421

cmake/modules/03-May-2024-96

docs/03-May-2024-31,28623,657

examples/03-May-2024-500324

include/03-May-2024-185,046108,607

lib/03-May-2024-635,567450,549

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

runtime/03-May-2024-427263

test/03-May-2024-672,550408,864

tools/03-May-2024-34,86626,446

unittests/03-May-2024-31,79526,264

utils/03-May-2024-14,13610,794

www/03-May-2024-24,95822,729

.arcconfigD03-May-202475 54

.clang-formatD03-May-202419 21

.clang-tidyD03-May-202446 21

.gitignoreD03-May-20241.4 KiB3632

Android.mkD03-May-2024752 4035

CMakeLists.txtD03-May-202417.9 KiB536456

CODE_OWNERS.TXTD03-May-20241.3 KiB5139

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

NOTICED03-May-20242.7 KiB6448

README.txtD03-May-20241.2 KiB2720

clang-device-build.mkD03-May-20241.1 KiB4635

clang-host-build.mkD03-May-20241.1 KiB4635

clang-tblgen-rules.mkD03-May-202413.6 KiB249210

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

clang.mkD03-May-2024372 97

shared_clang.mkD03-May-20241.3 KiB6246

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