• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

INPUTS/22-Nov-2023-1,013915

bindings/22-Nov-2023-6,1484,421

cmake/modules/22-Nov-2023-96

docs/22-Nov-2023-31,28623,657

examples/22-Nov-2023-500324

include/22-Nov-2023-185,046108,607

lib/22-Nov-2023-634,563449,741

patches/22-Nov-2023-2,0722,051

runtime/22-Nov-2023-427263

test/22-Nov-2023-672,284408,725

tools/22-Nov-2023-34,86626,446

unittests/22-Nov-2023-31,79526,264

utils/22-Nov-2023-14,13610,794

www/22-Nov-2023-24,95822,729

.arcconfigD22-Nov-202375 54

.clang-formatD22-Nov-202319 21

.clang-tidyD22-Nov-202346 21

.gitD01-Jan-19700

.gitignoreD22-Nov-20231.4 KiB3632

Android.mkD22-Nov-2023752 4035

CMakeLists.txtD22-Nov-202317.9 KiB536456

CODE_OWNERS.TXTD22-Nov-20231.3 KiB5139

INSTALL.txtD22-Nov-20232.1 KiB5036

LICENSE.TXTD22-Nov-20232.7 KiB6448

MODULE_LICENSE_BSD_LIKED22-Nov-20230

MakefileD22-Nov-20233 KiB12270

ModuleInfo.txtD22-Nov-202396 65

NOTES.txtD22-Nov-20234.3 KiB11280

NOTICED22-Nov-20232.7 KiB6448

README.txtD22-Nov-20231.2 KiB2720

clang-device-build.mkD22-Nov-20231.1 KiB4635

clang-host-build.mkD22-Nov-20231.1 KiB4635

clang-tblgen-rules.mkD22-Nov-202313.6 KiB249210

clang-version-inc.mkD22-Nov-20231.6 KiB3626

clang.mkD22-Nov-2023372 97

shared_clang.mkD22-Nov-20231.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