NameDateSize

..02-Jul-20154 KiB

.arcconfig02-Jul-201575

.clang-format02-Jul-201519

.gitignore02-Jul-20151.4 KiB

Android.mk02-Jul-2015661

bindings/02-Jul-20154 KiB

clang-host-build.mk02-Jul-20151 KiB

clang-tblgen-rules.mk02-Jul-201512.7 KiB

clang-version-inc.mk02-Jul-20151.6 KiB

clang.mk02-Jul-2015306

CMakeLists.txt02-Jul-201515.8 KiB

CODE_OWNERS.TXT02-Jul-20151.2 KiB

docs/02-Jul-20154 KiB

examples/02-Jul-20154 KiB

host_shared_clang.mk02-Jul-2015898

include/02-Jul-20154 KiB

INPUTS/02-Jul-20154 KiB

INSTALL.txt02-Jul-20152.1 KiB

lib/02-Jul-20154 KiB

LICENSE.TXT02-Jul-20152.7 KiB

Makefile02-Jul-20153 KiB

MODULE_LICENSE_BSD_LIKE02-Jul-20150

ModuleInfo.txt02-Jul-201596

NOTES.txt02-Jul-20154.3 KiB

patches/02-Jul-20154 KiB

README.txt02-Jul-20151.2 KiB

runtime/02-Jul-20154 KiB

test/02-Jul-20154 KiB

tools/02-Jul-20154 KiB

unittests/02-Jul-20154 KiB

utils/02-Jul-20154 KiB

www/02-Jul-20154 KiB

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