I\'ve used the Clang Static Analyzer from the command line before. I wanted to try Xcode\'s built-in version via Build & Analyze. I never get any negative results even though i specially prepared
It doesn\'t care about this: NSString* leaker() { return [[NSString alloc] init]; } I thought it would have been smart enough to check if any code paths could call that function without releasing
I am trying to make LLVM inline a function from a l开发者_如何学Goibrary. I have LLVM bitcode files (manually generated) that I linked together with llvm-link, and I also have a library (written in
cat test.cpp #include <iostream> int main() { int à; } results in: clang++ test.c开发者_如何学编程pp
The Manual for Clang seems to be work in progress, so could you help me formulate the definitive command line options for compiling ANSI-C (AKA C89, C90) with maximum strictness and relevant/helpful w
Is there some ultra fast \"syntax check my code, but don\'t compile mode\" for g++/clang? Where the only goal is to just check if the code I have is valid C++ co开发者_StackOverflow中文版de?-fsyntax-o
I have read numerous times that Build and Analyze is not perfect. When I run it, it does turn out some useful information and has definitely improved my code, but it also gives results that are not ne
Note, my question is not: how do I tell my compiler to compile with profiling on. I want to profile my compiles process. For each file, I\'d like to know how much time is spent on each line of the pr
Is there some C/C++ IDE for Windows, which is integrated with the LLVM compiler (and Clang C/C++ analyzer), just like modern Xcode do.
I have a class that builds a request based on a few passed in variables. The class also has all the delegate methods to receive the data a开发者_运维知识库nd stores it in a property for the calling cl