Tagged Questions
7
votes
3answers
953 views
Is it possible to suppress Xcode 4 static analyzer warnings?
The Xcode 4 static analyzer reports in my code some false positives. Is there any way to suppress them?
5
votes
1answer
195 views
Clang user documentation
I was unsure whether to ask here or in superuser, but this site seemed more appropriate
I'm looking for documentation/analysis on Clang specifically for these two areas:
comparison of warnings ...
5
votes
1answer
476 views
Example code to trigger Clang's static analyser
I would like to see a small but complete snippet of code that will cause Clang's static analyser to complain. My motivation is mostly that I'm trying to get it to work on my PIC32 code, and I need a ...
5
votes
5answers
1k views
How can I fix this clang warning: “Object with +0 retain counts returned to caller where +1 (owning) retain count is expected”?
I have a piece of Objective-C code that looks like the following:
- (NSString *)copyData:(NSData *)data
{
NSString *path = [[[self outputDirectory] stringByAppendingPathComponent:@"archive"] ...
2
votes
3answers
745 views
Clang scan-build won't work with Xcode 4.2 LLVM 3.0 build configuration
I've installed Xcode 4.2 final version to be able to compile for iOS 5.
We are using Jenkins for CI and run Clang scan-build from the llvm.org project page. (Version 258) The project is configured to ...
2
votes
3answers
947 views
Xcode 3.2: Build & Analyze never finds any issues
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 my ...
2
votes
1answer
1k views
Clang static analyzer on Windows
Does anybody have any success running clang static analyzer on Windows?
I have successfully built llvm and clang (using VS 2008). Running scan-build results in the following error:
The getpwuid ...
2
votes
3answers
1k views
Is it wise to use Clang to start with?
I am just starting out with xcode and learning Objective-C & Cocoa, would it be helpful to swap the compiler in Xcode 3.2 to Clang for the enhanced error checking and static analyser. I am just ...
1
vote
1answer
144 views
Why's the Build and Analyze command not finding obvious memory management errors?
For some reason, the Clang Static Analyzer in my Xcode doesn't complain about anything. I made big memory management mistakes to try it (alloc and no release), but it never finds them and doesn't ...
1
vote
4answers
5k views
Clang: what is “Method returns an Objective-C object with a +0 retain count” trying to tell me?
Running a static analysis with clang in both XCode 3.2 and Nikita Zhuk's Analysis Tool I've often come across this pair of warnings:
Method returns an Objective-C object with a +0 retain count ...
0
votes
1answer
26 views
How can I make Clang's “scan-build” work with SCons?
I've got a project built with SCons and I'm trying to use the Clang Static Analyzer to analyze the code. However, when running
scan-build scons
SCons seems to ignore the settings introduced by ...
0
votes
3answers
145 views
false positives Xcode4 Analyzer
In response to a comment made on this question: Is it possible to suppress Xcode 4 static analyzer warnings?, here is a false positive (or at least I believe so).
The code below gives the following ...
0
votes
1answer
369 views
Is the scope of what Xcode's “Build and Analyze” will catch as a leak supposed to be this limited?
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 ...
0
votes
1answer
263 views
How to get this Apple Script for Clang Static Analyzer working with Xcode?
Here's a script where lots of people say it's good:
http://allancraig.net/blog/?p=381
But I can't get it to work. What are the steps I have to do with the Xcode script editor, to run that script?
I ...