Tagged Questions
Clang is an "LLVM native" C/C++/Objective-C compiler, which aims to deliver amazingly fast compiles, extremely useful error and warning messages and to provide a platform for building great source level tools.
396
votes
34answers
107k views
Why is this program erroneously rejected by three C++ compilers? [closed]
I am having some difficulty compiling a C++ program that I've written.
This program is very simple and, to the best of my knowledge, conforms to all the rules set forth in the C++ Standard. I've ...
29
votes
7answers
10k views
LLVM C++ IDE for windows
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 ...
29
votes
4answers
4k 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 ...
28
votes
1answer
5k 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 ...
20
votes
3answers
794 views
What's the c++ inline class?
I accidentally found that the Clang compiler allows :
inline class AAA
{
};
in C++.
What's this?
PS. I have reported this to Clang mailing list cfe-dev@cs.uiuc.edu, and now waiting for reply. ...
19
votes
6answers
564 views
Ambiguous member access expression: is Clang rejecting valid code?
I have some code that, for the purposes of this question, boils down to
template<typename T>
class TemplateClass : public T {
public:
void method() {}
template<typename U>
static ...
19
votes
1answer
3k views
Zeroing Weak References in ARC
If my reading of Mike Ash's "Zeroing Weak References" writeup is correct, weak references are like assign references without ARC. However, if the referenced object is deallocated, instead of getting a ...
19
votes
5answers
6k views
LLVM vs. GCC for iOS development
In latest iOS SDK, Apple provides three compiler options: GCC, LLVM with Clang and LLVM-GCC. I understand more or less what these 3 mean, what LLVM and Clang are, and so on. What I don't know is what ...
19
votes
5answers
4k views
Can I use C++11 with Xcode?
I am considering the use of some C++11 features (like auto for instance) in some cross-platform projects (Windows+Mac). On Windows, Visual Studio supports parts of the upcoming C++11 standard that ...
18
votes
4answers
2k views
What's the difference between GNU99 and C99 (Clang)?
I have saw the compiler option GNU99 and C99. What's the difference of them? Any detail documentation? (Clang, Xcode, Mac OS X)
16
votes
2answers
910 views
Is it possible to convert a C++0x lambda to a clang block?
I've wondered if it is possible to convert a C++0x lambda to a clang block. So far anything I've seen on it has involved the discussion between their differences. My primary reason for looking into ...
14
votes
4answers
2k views
Switching between GCC and Clang/LLVM using CMake
I have a number of projects built using CMake and I'd like to be able to easily switch between using GCC or Clang/LLVM to compile them. I believe (please correct me if I'm mistaken!) that to use Clang ...
13
votes
2answers
3k views
ARC and bridged cast
With ARC, I can no longer cast CGColorRef to id. I learned that I need to do a bridged cast. According clang docs:
A bridged cast is a C-style cast annotated with one of three keywords:
...
13
votes
1answer
647 views
Is there Python Clang wrapper in the vein of pygccxml which wraps GCC-XML?
For a long time now I've been using pygccxml to parse and introspect my C++ source code: it helps me to do some clever code-generation during our build process.
Recently I've read a lot about the ...
13
votes
3answers
3k views
Clang vs GCC - which produces better binaries?
I'm currently using GCC, but I discovered Clang recently and I'm pondering switching. There is one deciding factor though - quality (speed, memory footprint, reliability) of binaries it produces - if ...
12
votes
3answers
147 views
Should this compile? Overload resolution and implicit conversions
This example seems to compile with VC10 and gcc (though my version of gcc is very old).
EDIT: R. Martinho Fernandez tried this on gcc 4.7 and the behaviour is still the same.
struct Base
{
...
12
votes
1answer
122 views
How does a compiler optimise this factorial function so well?
So I have been having a look at some of the magic that is O3 in GCC (well actually I'm compiling using Clang but it's the same with GCC and I'm guessing a large part of the optimiser was pulled over ...
12
votes
2answers
1k views
I'm writing a Button class in Objective-C with ARC — How do I prevent Clang's memory leak warning on the selector?
I'm writing a simple button class, something like this:
@interface MyButton : NSObject {
id object;
SEL action;
}
@property(strong) id object;
@property SEL action;
-(void)fire;
@end
...
12
votes
4answers
341 views
Inline qualifier stems from prototype or definition?
I'm not quite sure about this in the standards. Say I have three files like this:
foo.h
#include <iostream>
inline void foo();
void foo()
{
std::cout << "Foo" << std::endl;
}
...
12
votes
4answers
5k views
What versions of gcc, llvm and clang are in XCode 4?
For some reason, this information is difficult to come by.
We'd like to start using some of the C++0x features that are available in most compilers. But we are held back a bit by XCode 3, since it ...
11
votes
2answers
344 views
clang-based cross-platform C++ IDE?
The clang C++ compiler claims to be built for, among other things, better IDE integration by providing an API for the IDE to use for tasks such as parsing the code.
So, are there are any good C++ ...
11
votes
2answers
2k 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 ...
10
votes
1answer
235 views
In C++0x, do non-static data member initializers override the implicit copy constructor?
According to N2628 related to c++0x, non-static data member initializers can be overridden by explicitly defined constructors, but it appears to be slightly nebulous about the implicitly defined copy ...
10
votes
2answers
543 views
clang_complete: where is the libclang.{so,dylib} in OS X?
I looked in the usual places (/usr/lib/,/Developer/usr/lib/,/usr/local/lib), and it isn't there.
If it isn't installed, does anyone know where I can find instructions to install it?
Thanks!
I'm not ...
10
votes
4answers
756 views
Why clang not used more?
I've done a fair amount of programming in C/C++ before, but nowadays it only accounts for a small percentage of the programming I do (scripting languages are much better suited for a lot of the work I ...
10
votes
3answers
2k views
llvm vs c— ; how can llvm fundamentally not be better for haskell than c--?
I've been excited about llvm being low enough to model any system,
and saw it as promising that Apple was adopting it;
but then again Apple doesn't specifically support Haskell;
and, some think that ...
9
votes
2answers
399 views
How to disable a particular unknown #pragma warning? (GCC and/or clang)
I know how to disable all unknown #pragma warnings. The answer was given, for example, here: SO: How to disable #pragma warnings?
My question is - is there a way to disable an 'unknown pragma' ...
9
votes
3answers
746 views
LLVM vs Clang on Mac
I have a question concerning the different compilers on Mac Os.
What is the difference between the llvm-gcc 4.2, llvm 2.0 and the clang compiler? I know that they all build on llvm but how are they ...
9
votes
2answers
390 views
Have I found a bug in Clang?
I tried to compile the code below with Clang
class Prasoon{
static const int dummy = 0;
};
int const Prasoon::dummy = 0;
int main(){}
The above code did not give any error when compiled with ...
8
votes
1answer
244 views
std::make_shared, std::unique_ptr and move constructors
The following code compiles with clang 3.0/libc++:
#include <memory>
class Foo
{
public:
Foo()
: mem_(new int(10))
{
}
std::unique_ptr<int> mem_;
};
int main()
{
...
8
votes
2answers
225 views
ARC equivalent of autorelease?
If I have tho code,
+ (MyCustomClass*) myCustomClass
{
return [[[MyCustomClass alloc] init] autorelease];
}
This code guarantees the returning object is autoreleased.
What's the equivalent with ...
8
votes
6answers
503 views
any C/C++ refactoring tool based on libclang? (even simplest “toy example” )
As I've pointed out - here - it seems clang's libclang should be great for implementing the hard task that is C/C++ code analysis and modifications (check out video presentation and slides).
Do you ...
8
votes
2answers
592 views
Does clang already support C++11?
I would like to use std::array, std::regex and other things that are new in C++11.
Does clang already support C++11?
8
votes
4answers
3k views
clang complete for vim
I copied clang_complete.vim to plugin, but when I typed . after some variable, it says
pattern not found
I searched this issue, and somebody said I should configure g:clang_complete_auto: and ...
8
votes
3answers
410 views
C++'s “inline” - how strong a hint is it for GCC and Clang/LLVM?
In C++, the keyword "inline" serves two purposes. First, it allows a definition to appear in multiple translation units. Second, it's a hint to the compiler that a function should be inlined in the ...
8
votes
1answer
175 views
Publish a GPL v3 licensed project which statically links to a BSD style licensed library
as the question title said, I would like to create a project which will be published under GPLV3 license, but the project internally statically links to a BSD styled licensed library.
More details ...
8
votes
4answers
504 views
Confusing Template error
I've been playing with clang a while, and I stumbled upon "test/SemaTemplate/dependent-template-recover.cpp" (in the clang distribution) which is supposed to provide hints to recover from a template ...
8
votes
3answers
936 views
Linking LLVM JIT Code to Static LLVM Libraries?
I'm in the process of implementing a cross-platform (Mac OS X, Windows, and Linux) application which will do lots of CPU intensive analysis of financial data. The bulk of the analysis engine will be ...
7
votes
3answers
140 views
What (working) alternate toolchains exist for x86 C++ development on linux? [closed]
I precise that I restrict this question to "native" development for my x86 (64bits) linux box. No embedded or non-x86 architecture.
Since I'm a C++ user and there is a C++ renaissance, I'm currently ...
7
votes
2answers
109 views
Need quote from standard about legality of main function as a template function
On a whim, I tried to define the main function as a template function using clang 2.9:
template <typename T = void>
int main(int argc, char **argv)
{
}
and received the following error.
...
7
votes
5answers
335 views
Choosing CPU architecture for LLVM/CLANG
I am designing TTL serial computer, and I am struggling on choosing architecture more suitable for LLVM compiler backend (I want to be able to run any C++ software there). There will be no MMU, no ...
7
votes
3answers
127 views
A question about class definition in C++ “ : 1” [closed]
Possible Duplicate:
What does 'unsigned temp:3' means
I encountered a problem when I'm reading the code of Clang.
class LangOptions {
public:
unsigned Trigraphs : 1; ...
7
votes
3answers
830 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?
7
votes
5answers
1k views
How to make use of Clang's AST?
I am looking at making use of the Clang's AST for my C code and do some analysis over the AST. Some pointers on where to start, how to obtain the clang's AST, tutorials or anything in this regard will ...
7
votes
5answers
838 views
Not using C++ exceptions by design, in llvm/clang
llvm/clang are considered good C++ code bases. I wonder why C++ exceptions arenot used in them at all?
Memory is managed using something like pools, and erros are reported with returnd values and ...
7
votes
3answers
767 views
Are llvm-gcc and clang binary compatible with gcc? - particularly mingw gcc on Windows
If I build a static library with llvm-gcc, then link it with a program compiled using mingw gcc, will the result work?
The same for other combinations of llvm-gcc, clang and normal gcc. I'm ...
6
votes
2answers
79 views
How to get warnings about variables assigned to, but not used anymore?
The following file foo.c is a simplified version of a subtler bug I found in my code.
int b;
void bar(int a);
void foo(int a)
{
bar(a);
a = 42;
}
The line a = 42 is in fact a typo in my code: ...
6
votes
1answer
294 views
Why can't clang with libc++ in c++0x mode link this boost::program_options example?
Compiling this example code for boost::program_options: http://svn.boost.org/svn/boost/trunk/libs/program_options/example/first.cpp
...on MacOS Lion (10.7.2), using boost-1.48.0 installed with ...
6
votes
5answers
420 views
Clang vs GCC for Linux Development: Compare and Contrast
Any advantages or disadvantages to using clang, as opposed to GCC, for developing in C and C++ on Linux? In my case this would be used for student level programs, not production, though you are free ...
6
votes
0answers
183 views
How to make a clean clang front-end?
I'm working on a C++ source analyzer project and it seems that clang is nice candidate for
the parsing work. the problem is that clang heavily depends on the infrestructure "llvm" project,
how do I ...