12
votes
3answers
1k views
Anyone have experience with LLVM?
Does anyone have experience with LLVM, llvm-gcc, or Clang?
The whole idea behind llvm seems very intriguing to me and I'm interested in seeing how it performs. I just don't want to dump a whole lot …
4
votes
0answers
104 views
LLVM Clang 2.6 and Xcode 3.2!
So, I've just downloaded the LLVM Clang (2.6) binaries. Mac OS X 10.6 comes with Clang 1.0.Do you know how to integrate a later version of Clang with the Xcode 3.2.x IDE?
Just overwriting files …
3
votes
1answer
295 views
Xcode 3.2.1 GCC CLANG and LLVM demystification
The readme included with the new Xcode 3.2.1 this week says the following:
Static code analysis is fully integrated within the Xcode IDE via the Build and Analyze option under the Build menu or via …
3
votes
3answers
873 views
Using Clang Static Analyzer from within XCode
Since there is no Xcode script variable for "current project directory," how can you create a script menu item to run the Clang Static Analyzer on your current project from Xcode?
3
votes
3answers
532 views
Debugging with Clang
I'd like to use clang on my Xcode iPhone project. However this is the getting started guide:
http://clang.llvm.org/get_started.html
I've been working with Xcode for a year but this is far far far …
2
votes
2answers
81 views
How to detect LLVM and its version through #define directives?
The question is quite clear I think. I'm trying to write a compiler detection header to be able to include in the application information on which compiler was used and which version.
This is part of …
2
votes
3answers
551 views
CLANG giving errors complaining about defective header file UILocalizedIndexedCollation.h
I ran into this error when building my code with CLANG:
In file included from …
2
votes
2answers
150 views
AnalysisTool / Clang results: ivar naming convention violation
AnalysisTool (a Clang GUI front end) states some fo my ivars are improperly named:
Specifically:
the name of instance variable
'groupName' doesn't start with the 'm'
prefix
What does the …
2
votes
1answer
153 views
Why does Clang complain about all my autoreleased objects?
I have the following function:
- (NSString *)urlEncodedValue {
NSString *result = (NSString *)CFURLCreateStringByAddingPercentEscapes(
kCFAllocatorDefault,
(CFStringRef)self,
…
1
vote
3answers
266 views
Xcode 3.2 + LLVM = no local symbols when debugging
I have a project for Mac OS X 10.5 that I'm building on 10.6 using Xcode 3.2. When I use GCC 4.2 for Debug build and hit a breakpoint, Xcode debugger displays local variable information normally. If I …
1
vote
7answers
384 views
Elegant and safe way to determine if architecture is 32bit or 64bit
As title says, is there any elegant and safe way to determine if architecture is 32bit or 64bit. By elegant, you can think of precise, correct, short, clean, and smart way. By safe, think of safe in …
1
vote
1answer
76 views
Can clang be told not to analyze certain files?
I'm trying to use clang to profile a project I'm working on. The project includes a rather large static library that is included in Xcode as a dependency.
I would really like clang to not analyze the …
1
vote
3answers
356 views
Objective-C Singletons and LLVM/clang leak warnings
I'm using the singleton pattern in several places in an application, and I'm getting memory leak errors from clang when analyzing the code.
static MyClass *_sharedMyClass;
+ (MyClass *)sharedMyClass …
0
votes
1answer
91 views
XCode: Static Analyzer doesn’t work if C/C++-Code used in project
Hi,
with XCode 3.2.1 Apple delivered a built-in Clang static analyzer.
I am working on an iPhone project which uses some C-Code (one .h and .c file). When running Build and Analyze, Clang refuses …
0
votes
3answers
221 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 …
