Tagged Questions
4
votes
1answer
296 views
Why does the static analyzer show this bridged NSNumber to be leaking under ARC?
When running the Clang Static Analyzer against code that I've converted to use ARC, it's reporting the NSNumber in this block of code to be a leak:
NSNumber *temporaryNumber = [NSNumber ...
3
votes
1answer
118 views
Core Data produces Analyzer warnings
I am doing the final touch ups on an app and I am getting rid of every compiler/analyzer warning.
I have a bunch of Class methods that wrap my apps access to Core Data entities. This is "provoking" ...
2
votes
1answer
139 views
Strange Xcode Analyze results
When I Analyze my project in Xcode, I get a few strange errors.
All of this code is part of a single method which creates arrays that can be used to make MKAnnotations. Sorry if this is an inundation ...
2
votes
3answers
581 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
2answers
122 views
Any good tutorials on the Build and Analyze feature in Xcode?
I would like to know is there any tutorial to use xcode build and anylyse tool...
pls provide me links which points on it.
Thanks for any help
2
votes
1answer
382 views
Xcode 3.2.4 Analyzer skipped this file?
Having just upgraded to iOS 4.1 (Xcode 3.2.4) I am getting warnings when using the static analyser that I don't think I was previously getting when using 3.2.3
Now the project compiles just fine, ...
2
votes
3answers
937 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
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
645 views
Using an external Xcode Clang Static Analyzer binary, with additional checks
I’m using Xcode 3.2.4 and have setup the Clang Static Analyser feature to use a newer build of the binary, as detailed here: http://clang-analyzer.llvm.org/xcode.html
(Basically using the ...
1
vote
1answer
319 views
XCode/Static Analyzer: Suppressing a retain count/leak warning
I have a function that is creating a variable, but not deallocating it. It passes this object on with a message to another function that deals with the memory management.
My question is how do I ...
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
1answer
715 views
In Xcode 3.2 under iPhone-SDK 3.1, how do I avoid “Dead store” error from CLANG analyzer?
I just upgraded to Xcode 3.2 and am using the Build and Analyze feature to check old code for errors.
While doing something I thought was innocuous, I get this error:
"Dead store: Value stored to ...
0
votes
2answers
145 views
XCode Analyzer Warnings Without Details / Line Numbers
I ran the analyzer and found a handful of warnings that I can't associate with lines in the code. I'm not sure how to handle them. Clicking on them brings me to the right file in the editor, but the ...
0
votes
1answer
169 views
Don't understand memory analysis
I have upgraded my XCode to versio 3.2.3 to support iOS4 on my iphone project. using the static analyser I checked for memory management problems.
In one of my routines I get the following problem:
...
0
votes
1answer
367 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
2answers
793 views
Clang Static Analyzer for xcode for dummies
Could somebody please help me get Clang up and running? (I don't have 3.2)
I've followed numerous tutorials (basically every link off of this page ...
0
votes
1answer
186 views
Does Clang-LLVM work for iPhone?
I am currently using Xcode 3.2.1 for learning the iPhone SDK and was wondering if its possible to use the Clang-LLVM and the static-analyser to aid in debugging my code. Currently I am using the ...
0
votes
1answer
259 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 ...