Hello
Is there some C/C++ IDE for windows, which is integrated with LLVM compiler (and clang C/C++ analyzer), just like modern Xcode do.
I have Dev-Cpp (it uses outdated gcc) and Code::Blocks (with some gcc). But Gcc gives me very cryptic error messages. I want to get some more user-friendly error messages from clang frontend.
Yes, clang was not able to be used with complex C++ code, but trunk clang already can compile LLVM itself. So I wonder if is there any of llvm IDEs in development or in beta versions.
Thanks.
update: Yes, I can use clang as other compiler with gcc-compatible IDEs. But is there any IDE, that are Integrated with clang? Clang have different output format, so ide must parse it. Clang can provide IDE parsing of sources. Clang has analyze option, which must be supported in IDE. Take a look, e.g http://iphonedevelopertips.com/xcode/static-code-analysis-clang-and-xcode-3-2.html
update1: And the most wanted feature of clang - is smart auto-completion, so IDE can suggest only syntaxilly-correct variants, e.g. list only fields of this struct, class.