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.

learn more… | top users | synonyms

0
votes
1answer
7 views

Is is possible to disable this warning in clang? warning: #pragma once in main file

warning: #pragma once in main file We're running our headers through clang to get a partial AST. Is it possible to disable that warning? I've had little success on my own. Cheers / kyle
1
vote
1answer
17 views

map of structs using unique ptr : does not build on visual but works on clang

I'm having these two simple codes : void f(){ std::map<int,std::unique_ptr<int>> map_; std::unique_ptr<int> p; map_[42] = std::move(p); } does build struct test_s{ ...
1
vote
2answers
44 views

Why it doesn't compile with Apple Clang ( functional / std::bind ) Compiles fine with GCC

Here is a short version of the code I try to compile. #include <iostream> #include <functional> #include <memory> void foo(std::shared_ptr<int> b, unsigned int i) { ...
0
votes
0answers
41 views

return fixed size array

Sometimes I want to return an array of something, I know what I should do it let the caller to make the array and modify the array in the method. But it turns out this works? @interface Test : ...
3
votes
1answer
36 views

clang and <iostream> on windows

According to http://clang.llvm.org/get_started.html I did the ALL_BUILD on Windows with Visual Studio 2010 and added the built stuff to my system path with ...
0
votes
1answer
36 views

Why doesn't clang or gcc flag this implicit conversion from double to int?

Consider the following code: void f(int x) { std::cout << x << std::endl; } int main() { double x = 1.5; f(x); return 0; } This compiles and runs without any warnings ...
1
vote
0answers
19 views

LLVM: Get function argument locations (ABI)

I'd like to write a LLVM plugin to tell me: for each function declaration, how many general purpose register, XMM register, and stack arguments the function will have. This only needs to work for the ...
0
votes
0answers
41 views

Fatal error when compiling llvm/clang - 'cstddef' file not found

When trying to compile llvm/clang ../llvm/configure --enable-cxx11=yes --enable-libcpp=yes --enable-optimized=yes --prefix=/usr/local --enable-targets=all --with-gcc-toolchain=/usr/local/bin ...
0
votes
1answer
50 views

Compiling with clang with c++11 enabled fails

Having the following test.cpp: #include <iostream> int main() { int a{}; std::cout << "TEST" << std::endl; } When build with the latest GCC (4.8.0) g++ test.cpp ...
0
votes
1answer
18 views

libev-4.15 doesn't compile on OSX 10.8

I'm trying to upgrade from libev-3.8 (which compiles fine on OSX 10.8) to libev-4.15 and getting the following error. third_party/libev-4.15/ev.h:234: error: expected identifier before numeric ...
0
votes
0answers
9 views

clang: error: linker command failed with exit code 1 (use -v to see invocation) [ERROR]

I got the following error, when loading titanium module: clang: error: linker command failed with exit code 1 (use -v to see invocation) [ERROR] [ERROR] Error: Traceback (most recent call last): ...
5
votes
2answers
150 views

A simple test case between clang++/g++/gfortran

I ran across this question on scicomp which involves computing a sum. There, you can see a c++ and a similar fortran implementation. Interestingly I saw the fortran version was faster by about 32%. ...
0
votes
1answer
39 views

Disabling clang C++11 warnings

I cannot for the life of me get clang to stop warning me about C++11 extensions. Anywhere I use "auto" or any other C++11 extension it spits out a warning. I have the flag -Wno-c++11-extension but it ...
0
votes
1answer
65 views

Vim Editor->clang_complete: no python support available

Case: Testing clang_complete with gVim 7.3 I installed MinGW, then followed the tutorial here to download and compile clang. It compiled for around an hour, then make install. Clang worked. I ...
0
votes
1answer
37 views

Clang with C code: enumeration values not explicitly handled in switch

I'm trying to compile this code with clang 3.1 and the option -Weverything: #include <stdio.h> #include <stdlib.h> #include <SDL/SDL.h> SDL_Surface* init(SDL_Surface* screen); ...
0
votes
1answer
42 views

Does CMAKE support Python 3?

I'm attempting to build Clang on Windows 7 using CMAKE. I've performed the following steps; as specified in this guide. The guide is wrong in one aspect: Python is required and without it, cmake ...
0
votes
0answers
11 views

How to tokenize cpp file using clang + JNA?

I try to parse cpp file using libclang + JNA in order to do syntax highlighting. First i should tokenise the file and then highlight tokens found. JUnit method code: private TranslationUnit ...
0
votes
1answer
47 views

Template member function error: clang doesn't match any member function

I've write the following template member function but i can't call it without getting error by compiler: template <class T, class A> auto tpool::enqueue(T&& func, ...
0
votes
2answers
25 views

XCode Undefined Reference

I have compiled a static library via the command line using llvm-g++-4.2. When I attempt to link against that library and build an app within XCode, I get this: Undefined symbols for architecture ...
0
votes
1answer
26 views

Where to get cross-linker?

I found that providing few options to llvm-clang I can compile to other platform. This for example will compile for ios: clang -cc1 -triple arm-apple-darwin -emit-obj -mrelax-all -disable-free ...
0
votes
1answer
45 views

On Mac OS X, is it more efficient to pass vectors by reference or by value?

Clang has a C/C++ extension that which allows you to treat vector values as first-class citizens: typedef double double4 __attribute__((ext_vector_type(4)); // easy assignment double4 a = {1, 2, 3, ...
0
votes
0answers
33 views

expression is not an intergral constant clang libc++ threading

I'm trying to compile a really simple thread program on my linux machine(ubuntu), but clang seems to still throw an error at me even when I specify libc++. my program is: #include <iostream> ...
1
vote
0answers
25 views

how to Generate code from clang::ASTContext

I need a sample code to learn how to Generate C++ Code from clang::ASTContext. I created ast from c++ code and I made some changes in AST and now I want to Generate Code again. Can anybody help? ...
0
votes
0answers
7 views

Specifying link flags for make and clang

I am building Netscape Portable Runtime. I get linking error at some point. The problem is one missing argument to the link command. What make is doing is this: clang nsinstall.c -o nsinstall.o -c ...
2
votes
1answer
21 views

Clang/LD function demangling?

I have two working compilers, clang on Mac, which can target iPhone, and clang on iPhone, which also targets iPhone. Normally both work great, generating binaries and libraries. Libraries produced on ...
1
vote
2answers
81 views

Why can't I have property named 'retain' when using XCode?

In XCode 4.6.2 ARC, if you have some property in a class named 'retain', either the IDE or the compiling stack will do something funny, making the class can't be used in the usual pattern: [[MyClass ...
0
votes
1answer
53 views

Can't get GLFW to link

I am trying to compile the below test program: #include <GL/glfw.h> int main(int argc, char** argv) { if(!glfwInit()) { return -1; } if(!glfwOpenWindow(640, 480, 8, 8, 8, ...
0
votes
1answer
30 views

Is there any api in libclang to simpilfy BinaryOperator

I want to do a transform on my code, it simplifies the binary operator e.g. "1+ a+ 2" to "a+3", so is there any api in libclang can do such things?
0
votes
1answer
37 views

construct AST from string with libclang

I generate some c++ codes, and store it in string, I want to construct an AST tree from the string using libclang. How to do it? I don't want to string into extra files.
0
votes
0answers
45 views

Linking against clang

After many failing attempts to build clang for iOS, I found this clang.deb at: http://ininjas.com/repo/debs/ I extracted the files and put them in a Xcode project. Building (for device) works fine, ...
0
votes
1answer
34 views

boost::uuids::uuid as a key in std::unordered_map?

I'm using clang (CXX='clang++ -std=c++11 -stdlib=libc++') on Mac OS X, with boost 1.53.0. I want to use uuid as keys in unordered_map, but getting the following errors: ...
0
votes
1answer
19 views

Bounds checking of std::vector (and other containers) in clang?

In clang, is there a way to enable bounds checking for [] access to std::vectors and other STL containers, preferably when building in debug mode only? I just spent hours hunting down a subtle bug ...
4
votes
1answer
73 views

Unexpected conversion in regular initialization

Clang 3.2 reports an error in the following code, and I do not understand why there is a problem. The error occurs only in the template function, and only if braces are used for initialization. The ...
3
votes
1answer
41 views

What does “error: cannot use type 'void' as a range” actually mean?

When I compile this in clang 3.2 for(auto x : {1, 1.2}){} I get an error like this: error: cannot use type 'void' as a range What does it mean?
1
vote
1answer
83 views

Bug with __int128_t in Clang?

This little code compiles with both GCC and Clang, but gives different results: #include <stdio.h> int main(){ __int128_t test=10; while(test>0){ int myTest=(int)test; ...
3
votes
2answers
50 views

Compiling multiple Objective-C files on the command line with clang

Hopefully simple question. I'm trying to learn basic Objective-C compiling from the command line, with clang. I understand that Xcode is a better solution for complex projects and I plan on moving to ...
0
votes
2answers
22 views

In Objective-C ARC, what are “BPTRs declared within extern ”BCPL“ blocks”?

In the Clang documentation for ARC, it says: ARC applies to Objective-C pointer types, block pointer types, and [beginning Apple 8.0, LLVM 3.8] BPTRs declared within extern "BCPL" blocks. ...
0
votes
4answers
71 views

Why is only the numerator cast to float to obtain a float quotient while dividing two integers?

I am just starting out with Objective-C,and with C in general,so I suppose this is a C question as well.It's more of a why question rather than a how question. I noticed that while dividing two ...
0
votes
0answers
57 views

gcc-4.8 vs. clang-3.2 inlining performance

compiling this example code with gcc-4.8 and clang-3.2 i obtain some unexpected results: #include <folly/Benchmark.h> #include <folly/Foreach.h> struct isDivisibleBy2 { bool ...
1
vote
0answers
58 views

clang - getting body of the function

I'm trying to get the entire code of the function body. I have the following code bool VisitFunctionDecl(FunctionDecl *f) { Stmt *FuncBody = f->getBody(); stringstream SSAfter; ...
0
votes
2answers
49 views

Why does my class respond to my global SEL variable only in Debug builds?

I'm using Objective-C++ for a personal project and I found odd behavior with SEL variables at the global scope with an initializer. Consider this runnable Objective-C++ snippet: #import ...
1
vote
1answer
58 views

Error in use of __compressed_pair

I began implementing N3558 on top of libc++ master (see future here) but am now stuck with an error in functional, which I do not understand. No matter how I code it, it always fails with the ...
2
votes
2answers
57 views

Intel c++ - optimizer messages

I wonder if it's possible to make Intel C++ compiler (or other compilers such as gcc or clang) display some messages from optimizer. I would like to know what exactly optimizer did with my code. By ...
2
votes
2answers
68 views

Clang (in Xcode): start with -Weverything and manually disable particular warnings

I like to use -Weverything for the compiler to catch all possible warnings, but sometimes I get warnings that I don't want to fix. How can I manually disable those particular warnings as they occur? ...
-4
votes
1answer
54 views

how to use clang compile c file with math.h? [duplicate]

#include <stdio.h> #include <math.h> int main() { printf("%.81f\n", 1+2*sqrt(3)/(5-0.1)); return 0; } output: /tmp/a4-4oU730.o: In function main': a4.c:(.text+0x4f): undefined ...
0
votes
1answer
30 views

How to link a library with llvm-link [duplicate]

I am using llvm-link to link LLVM bitcode files, but in my source code I also want to use a function from a shared library file that I created. Now, how do I go about linking that shared library with ...
0
votes
1answer
55 views

How to specify linker dependencies in boost.build Jamroot

When I try to compile an exec with b2 toolset=clang it uses a linking command like : clang++ -L/apps/bzip2/lib -L/apps/zlib/lib -o fixfast/bin/clang-linux-3.3/release/link-static/fixfast-mds_MCAST ...
0
votes
0answers
46 views

Can I compile a function with gcc and then use it with clang?

I am trying to use SSE4.2 intrinsics with clang/llvm but its not compiling, as I get cannot select intrinsic error from LLVM. On the other hand, the same code compiles flawlessly in gcc. So I thought, ...
0
votes
0answers
30 views

LLVM: Cannot select intrinsic error

I'm trying to use the SSE4.2's instruction _mm_crc32_u64 and for that purpose added -msse4.2 flag in the makefile, but yet I get this error when I try to compile my code with clang/llvm. LLVM ERROR: ...
1
vote
1answer
33 views

linking with clang++ on OS X generates lots of symbol not found errors

I'm trying to compile some C++ code (including C++11 features) on OS X 10.8 using the clang++ compiler. I have a makefile that generates the object files OK, then on the command: clang++ -o ...

1 2 3 4 5 27