2006-06-18 05:43:12 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// C Language Family Front-end
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-09-13 17:23:57 +00:00
|
|
|
Welcome to Clang. This is a compiler front-end for the C family of languages
|
|
|
|
(C, C++, Objective-C, and Objective-C++) which is built as part of the LLVM
|
2010-06-17 12:39:05 +00:00
|
|
|
compiler infrastructure project.
|
2006-06-18 05:43:12 +00:00
|
|
|
|
2009-09-13 17:23:57 +00:00
|
|
|
Unlike many other compiler frontends, Clang is useful for a number of things
|
|
|
|
beyond just compiling code: we intend for Clang to be host to a number of
|
2014-07-09 14:06:35 +00:00
|
|
|
different source-level tools. One example of this is the Clang Static Analyzer.
|
2006-10-06 04:10:25 +00:00
|
|
|
|
2009-09-13 17:23:57 +00:00
|
|
|
If you're interested in more (including how to build Clang) it is best to read
|
|
|
|
the relevant web sites. Here are some pointers:
|
2008-05-09 17:12:45 +00:00
|
|
|
|
2017-10-21 16:03:17 +00:00
|
|
|
Information on Clang: http://clang.llvm.org/
|
|
|
|
Building and using Clang: http://clang.llvm.org/get_started.html
|
|
|
|
Clang Static Analyzer: http://clang-analyzer.llvm.org/
|
|
|
|
Information on the LLVM project: http://llvm.org/
|
2008-05-09 17:12:45 +00:00
|
|
|
|
2009-09-13 17:23:57 +00:00
|
|
|
If you have questions or comments about Clang, a great place to discuss them is
|
|
|
|
on the Clang development mailing list:
|
2015-08-05 03:55:23 +00:00
|
|
|
http://lists.llvm.org/mailman/listinfo/cfe-dev
|
2006-07-28 05:25:01 +00:00
|
|
|
|
2009-09-13 17:23:57 +00:00
|
|
|
If you find a bug in Clang, please file it in the LLVM bug tracker:
|
|
|
|
http://llvm.org/bugs/
|
2017-09-03 15:29:38 +00:00
|
|
|
|