From: Chris Lattner Date: Wed, 25 Feb 2009 05:35:47 +0000 (+0000) Subject: clang seems "generally useful" for c and objc by now, though obviously bugs X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d825883a1a4cf1bae98d45664c4f02c85535371f;p=clang clang seems "generally useful" for c and objc by now, though obviously bugs still remain. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65431 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/get_started.html b/www/get_started.html index a975eaf17c..dbce1f23ab 100644 --- a/www/get_started.html +++ b/www/get_started.html @@ -27,22 +27,21 @@ involved with the clang community.

While this work aims to provide a fully functional C/C++/ObjC front-end, it is still early work and is under heavy development. In particular, there is no real C++ support yet (this is obviously a big project), and C/ObjC -support is still missing some features. Some of the more notable missing pieces -of C support are:

+support is still missing some minor features. Some of the more notable missing +pieces of C support are:

    -
  1. The semantic analyzer does not produce all of the warnings and errors it - should.
  2. -
  3. The LLVM code generator is still missing important features. clang is not - ready to be used as a general purpose C code generator yet, but if you - hit problems and report them to cfe-dev, we'll fix them :).
  4. +
  5. The semantic analyzer does not produce all of the warnings it should.
  6. We don't consider the API to be stable yet, and reserve the right to change fundamental things.
  7. +
  8. The driver is currently implemented in python and is "really slow".
-

Our plan is to continue chipping away at these issues until C works really -well, but we'd love help from other interested contributors. We expect C to be -in good shape by mid to late 2008.

+

At this point, C and Objective-C are generally usable for X86-32 and X86-64 +targets. If you run into problems, please file bugs in LLVM Bugzilla or bring up the issue on the +Clang development +mailing list.

Building clang / working with the code