clang is a C, C++, and Objective-C compiler which encompasses preprocessing, parsing, optimization, code generation, assembly, and linking. Depending on which high-level mode setting is passed, Clang will stop before doing a full link. While Clang is highly integrated, it is ...
0
votes
2answers
87 views
g++ , range based for and vectorization
considering the following range based for loop in C++ 11
for ( T k : j )
{
...
}
there are g++ or clang++ optimization flags that can speed up the compiled code ?
I'm not talking about any for ...
0
votes
1answer
23 views
clang++ mac os x c++11 linker issue
I have a problem compiling a program with "-std=c++11 -stdlib=libc++" under mac os x 10.8.3 using clang++ from xcode 4.6.2.
When I try to use std::mem_fn() or (deprecated) std::mem_fun_ref(), I get ...
1
vote
2answers
37 views
Conditional linking through static library
I’m writing a big static library in C++. In that library, I use symbols from plenty of static and dynamic libraries. When I “make” it, I don’t need to link against any libs because it’s static. Here’s ...
1
vote
1answer
18 views
CocoaPods: Linking with C++ symbols defined in libPods.a
I recently started working on a podSpec file that integrates levelDB into my projects.
(https://github.com/iljaiwas/Podspecs/blob/master/LevelDBPodSpec/0.0.1/leveldb.podspec)
However, when I ...
0
votes
2answers
45 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
32 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
vote
0answers
37 views
error “error loading plugin” when linking with “clang -flto” or “clang -O4” with Fedora-18 distributed clang and binutils
I'm a newcomer to clang, so it's likely I'm doing something silly. But I've spent several hours looking for solutions, including searching here, where I haven't found questions addressing -flto with ...
-2
votes
0answers
102 views
Failing to compile basic C++ program on mac
I am trying to compile a simple c++ program in mac. Am still learning c++.
Am getting the following errors on mac with g++ compiler or clang++ compiler. Can anyone point to me what i could be ...
0
votes
0answers
28 views
Build shared library with Clang++
I am trying to build a shared library (dll for Windows) using Clang++.
I have run the following commands:
clang++ -c -o hello.o hello.cpp
clang++ -shared -v -o hello.dll hello.o
The first command ...
8
votes
1answer
280 views
G++, clang++ and std::function
I was just playing around with the new std::function from C++11, and I wrote an example that compiles with clang++ 3.2 and the Intel C++ compiler 13.1 but not with g++ 4.8. Before I report this as a ...
4
votes
1answer
208 views
Clang++ not understanding c++11 in mac terminal
I am trying to get some c++ code (with c++11) to compile in the mac terminal. I tried
clang++ -std=c++11 main.cpp
but i get the error
error: invalid value 'c++11' in '-std=c++11'
My xcode is ...
1
vote
3answers
83 views
Order of parameters in g++/clang++ with makefile
I stumbled upon this very annoying problem while working with CERN's ROOT on Ubuntu 12.04 but I think it's a more general problem.
I have some C++ code with external references that I compile and ...
3
votes
2answers
74 views
g++ and operator << when changing value during evalutation gives unintentional result
Here's some simple code.
#include <iostream>
using namespace std;
bool func(char* m)
{
*m = '4';
return true;
}
using namespace std;
int main()
{
char c1 = '3';
cout << ...
0
votes
1answer
153 views
Why does Clang++ not compile code with <header> on Windows?
Why does clang++ compile this:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
printf("Hello World!\n");
return EXIT_SUCCESS;
}
and do not want compile ...
0
votes
1answer
61 views
clang++ cant find file <iterator>
I am trying to compile my c++ project (working with g++ with boost) with clang. I have successfully compile boost-libraries (1.53) with clang tool-chain. I am using CMake to compile my project, ...
5
votes
1answer
230 views
Explicit instantiation of templated constructor for template class
I am uncertain if it is a bug in Clang 3.2 or a violation of C++03, but it appears that explicit instantiation of templated constructors for template classes fails, but explicit instantiation of ...
0
votes
0answers
159 views
Linker Errors when compiling with clang against llvm
I am trying to using clang with its c++ 11 features. This all works fine.
For ease of discussion, I will post the Makefile for the dir.
CXX=clang++
PLATFORM=i486-linux-gnu
...
6
votes
1answer
154 views
Exception specifications are not compatible in declaration and in realisation of function
We have following code
int main()
{
void f() throw(int);
f();
return 0;
}
void f() { }
GCC and clang compiles it well. But, in standard there is such paragraph:
n3376 15.4/4
If any ...
1
vote
1answer
208 views
Qt Creator can't build debugger helper
I asked this question on the Qt forums, but they seem to be pretty quiet these days.
I'm running the relatively new Qt Creator 2.6.2 (with Qt 5.0.1). When I try to build the debugger helper, I get ...
1
vote
2answers
369 views
clang++ under QtCreator can't work with c++11
OS : OS X 10.8.1
QtCreator : 2.6.2
Command line is fine, but QtCreator fail to compile the codes
source codes
#include <functional>
#include <iostream>
#include <memory>
#include ...
1
vote
2answers
78 views
implicit conversion during pass by value works, but pass by reference does not
Compiling with clang++ 4.1:
class A
{
public:
A(const char *s=0) : _s(s) {}
const char *_s;
};
void f(A a)
{
cout << a._s << endl;
}
int main()
{
f("test");
return ...
0
votes
1answer
101 views
clang: stripping class names from the output
I build a C++ project of mine using clang++, using the following command line command (split into lines):
clang++
-std=c++11
-W -Wall -Wextra -pedantic -Wno-newline-eof -Werror
-O4
...
2
votes
1answer
106 views
integral_constant and template argument deduction
I would like to capture compile time constant integers passed to a function into templated types. The future goal is to roll my own (very limited) expression template that creates expressions from ...
0
votes
1answer
196 views
libconfig++ -stdlib=libc++ Undefined symbols
Attempting to get a very simple example of libconfig++ working. However I'm encountering the following link error due to the compiler options '-stdlib=libc++' and '-std=c++11'.
Environment
Darwin ...
2
votes
1answer
133 views
Substitution failure is sometimes an error?
The following code snipplet tries to implement a 'std::is_constructible<A, int>':
#include <type_traits>
struct A {
// A(int);
};
template< typename T >
struct cstr_int
{
...
0
votes
2answers
130 views
Why does GCD increase execution time?
I try to learn Grand Central Dispatch (GCD) and use the following code to test:
With GCD:
#include <dispatch/dispatch.h>
#include <vector>
#include <cstdlib>
#include ...
3
votes
2answers
101 views
clang++ - treat template class name as template in the class scope
It seems that clang++ (I tried clang 3.2) treats the name of a template class as a instantiated class, not a template for any occurence within the class scope. For example, the following codes
...
1
vote
1answer
74 views
Boost.Wave 1.52 does not build using clang++ on Darwin
I've applied Compile boost 1.52 C++11 clang mac 10.8.2 cannot find cstddef
and invoked build as follows
./b2 variant=debug,release --layout=versioned toolset=clang cxxflags="-fPIC -std=c++11 ...
0
votes
1answer
293 views
clang++, boost::spirit and c++11
I'm using clang++ (clang-421.0.60), packaged with Xcode 4.6, and came across an issue with boost::spirit. If I compile without any flags, everything compile fine. If I compile with '-std=c++11', then ...
3
votes
2answers
95 views
Compile code to a specific C/C++ standard
I have tried googling this but all I get is results on how to compile a basic program.
Is it possible to compile code to a specific C++ standard using Clang++ and G++ by specifying that code should be ...
0
votes
0answers
158 views
Cern Root Framework Compilation was done with two different versions libstdc++ installed on Mac OS X 10.8
I'm using Mac OS X 10.8. I have XCode Development Tools installed and also I installed gcc-4.7.1 from here. Now I have two different versions of libstdc++: one is /usr/lib/libstdc++.6.0.9.dylib and ...
1
vote
1answer
188 views
What's the difference between clang and clang++ when building a library?
I was compiling a c library (to be used by a c++ project) with clang. I got linker errors (specifically, undefined symbol regarding the hqxInit function) when trying to link this library. When I ...
2
votes
2answers
40 views
making an installable executable for os x
I have an application that both compiles with the clang++ and the g++ version 4.7 on OS X. The application I wrote uses third party sdks such as opencv, glfw, etc to name a few. As of now I can make ...
0
votes
1answer
126 views
Using clang-2.9 with Os X 10.5.8 for compiling Z3
I would like to use Z3Py and I am trying to install Z3 following the instructions in http://z3.codeplex.com/SourceControl/changeset/view/89c1785b7322#README
I am obtaining the following:
...
0
votes
2answers
229 views
Why is clang not working in Mac Os X 10.5.8 (Leopard) for compiling Z3?
I am not a pro-user of Mac, so I am having a lot of problems to install software. I would like to run the Z3Py (Z3 API using Python). I download Z3 v4.3.1, I installed clang v2.9 using Macports-2.1.2 ...
2
votes
1answer
404 views
C++ 11 code compiles with `clang++`, but not with `clang -x c++`
Basic Problem
I have the following code
#include <iostream>
#include <cstdint>
using namespace std;
int main ()
{
int32_t spam;
spam=5;
cout << "Hello World! We like " ...
1
vote
1answer
138 views
Variadic template specialization in C++11
Is it implemented already, because this does not compile: (using gcc 4.7.2)
template <typename... Ts>
struct Foo {
int foo() {
return 0;
}
};
template <>
struct ...
2
votes
1answer
138 views
how to instruct gcc/clang to output temporary files to a particular directory
While using the --save-temps option to save the temporary files, gcc/clang outputs the temporary file in the same directory as the input files. Is there an option to instruct gcc to output the files ...
0
votes
1answer
102 views
(solved) clang++ link issue under ubuntu 11.04 with libc++
I compiled libc++ under ubuntu 11.04, made soft links
>ln -sf libc++.so libc++.so.1.0
>ln -sf libc++.so.1 libc++.so.1.0
under /usr/lib, also soft link for stl header files
> ln -sf ...
2
votes
0answers
61 views
What is the signature of the Clang compiler in the ELF?
I have several binaries compiled with gcc/g++ and others compiled with clang/clang++.
So far i have tried:
strings -a ./myBinary | grep -i clang
objdump -s --section .comment ./myBinary
readelf -p ...
0
votes
2answers
868 views
clang++ : C++ requires a type specifier
I can't get over this 'C++ requires a type specifier for all declarations' issue with clang++
Please suggest to overcome this error using clang++.
I greatly appreciate you, for taking look at it
...
5
votes
3answers
1k views
Clang on Cygwin with C++11
I installed Clang on Cygwin and I try to compile this code:
#include <iostream>
int main() {
std::cout << "hello world!" << std::endl;
return 0;
}
That works fine if I do ...
0
votes
0answers
16 views
Clang build issues
When clang is built, some .inc files are supposed to be generated. These files are missing and I don't know how to generate them.
I am new to clang, and am trying to using it, but I don't know how to ...
2
votes
1answer
463 views
How to compile a C++ program in LLVM using clang++?
There is a tutorial - http://llvm.org/docs/GettingStartedVS.html Example done in pure C. I can compile and link it. Without problem, really. But I need C++, not pure C. And here the difficulties ...
24
votes
1answer
288 views
wrong result when std::for_each is called in a template function
test code:
template<typename T>
void test() {
T container { 1, 2, 3 };
std::for_each(container.begin(), container.end(), [](int v) {
cout<<"1st for_each"<<endl;
...
2
votes
0answers
363 views
Error while trying to compile c++11 regex tutorial with Clang++ on Linux
I'm trying to follow this tutorial about regex in C++11. When I try to compile the little code example I get these errors
clang++ -std=c++0x test.cpp -o test
In file included from test.cpp:3:
In file ...
4
votes
1answer
326 views
Simplifying complex C++ template symbols
I'm working on a debugging/memory tool. I want to display symbols coming from C++, the problem is that they are very verbose. At the moment I'm just using __cxa_demangle, but this often results in ...
0
votes
2answers
223 views
“call to deleted constructor of” compiler error for std::runtime_error sub-class
I have derived an exception class from std::runtime_error in order to add support for streaming to exceptions. I am getting a strange compiler error output with clang that I'm not sure how to resolve?
...
1
vote
1answer
368 views
Making a SFML2 Applcation with Clang, libc++ and c++11. Undefined Reference to SFML Library
I'm having a weird problem with making an SFML2 application. I'm using Clang++ from the Repositories as well as libc++ (both updated today). SFML2 was also updated from the SVN repo. I'm using the ...
0
votes
1answer
185 views
How can I compile and build a program using external library with command line tools come with Xcode?
I am coding a computer vision program, which is using OpenCV 2.4, by Xcode 4.4. I want to compile and make it in the Terminal by g++ or make command. But the system shows a lot of errors that the ...
