libc++ is an open C++ Standard Library implementation, and a subproject of LLVM.org. It has been designed for C++11.

learn more… | top users | synonyms

3
votes
1answer
85 views

libc++ std::istringstream doesn't thrown exceptions. Bug?

After configuring a std::istringstream to throw exceptions when failbit is set I get no exceptions happening with libc++ (this is under linux with libc++ compiled with support from libcxxrt). I ...
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 ...
0
votes
0answers
88 views

c++ -std=c++11 -stdlib=libc++ with boost.thread gives Segmentation fault: 11 on OSX

Tried to run some sample code. But something unexpected occured. I wonder is there any known issus about boost.thread used with libc++ together ? Program compiled with -std=c++11 or no option runs ...
0
votes
1answer
109 views

Tesseract-OCR 3.02 with libc++

Xcode 4.6, iOS SDK 6.1, tesseract-ocr 3.02 Since the last OpenCV versions are built using libc++, and tesseract-ocr is built using libstdc++, they can't be used together in one xcode project. So, I'm ...
0
votes
1answer
96 views

undefined reference to `__dynamic_cast' using libc++ on ubuntu

I'm trying to compile a test case that employs dynamic_cast using libc++, which was compiled according to "Build on Linux using CMake and libsupc++". #include <iostream> struct A { virtual ...
3
votes
1answer
159 views

clang 3.2 fails on std::atomic — a libc++ issue?

I try to compile the simple code #include <atomic> int bar = 0; void foo(std::atomic<int>&flag) { bar = flag; } with clang++ 3.2 (downloaded as llvm 3.2 from llvm.org; on mac os.x ...
0
votes
1answer
53 views

How to link to libc++ on /usr/local/lib?

I've tried to provide -L /usr/local/lib, tried -nostdinc++, tried to set DYLD_LIBRARY_PATH and DYLD_FALLBACK_LIBRARY_PATH but otool aways gives me: otool -L sample sample: /usr/lib/libc++.1.dylib ...
0
votes
1answer
120 views

C++11 standard libraries in libstdc++ on Mac

In a Xcode project which I currently work on, I am using C++11 with Apple LLVM 4.2 (clang) compiler, and using libstdc++ as my standard library, because I am using a library (NTL) which was not ...
0
votes
1answer
53 views

Building both static and shared libs for LLVM libc++ 3.3

The latest LLVM libc++ 3.3 from SVN comes with a CMakeLists.txt. I am a CMake newbie, but yesterday I studied enough to be able to build libc++ check-out on a RHEL 6.4 x86_64 host. In addition, I ...
3
votes
1answer
118 views

Remove Boost libstdc++ dependency with clang++/libc++?

The answer to this question How to compile/link Boost with clang++/libc++? states to build Boost with clang++ and libc++, the following should do: ./b2 clean ./b2 toolset=clang ...
9
votes
1answer
162 views

Is this crash in libc++ std::search_n a bug?

I've narrowed this down as far as I can, it seems like a bug... #include <algorithm> #include <vector> int main(int argc, char *argv[]) { // Crashes std::vector<uint8_t> bs{1, ...
2
votes
1answer
112 views

How can I build LLVM and link it against libc++?

I am trying to build LLVM and link it against libc++, but I can't get it to work. I downloaded the latest version (LLVM 3.2). $ CXXFLAGS=-stdlib=libc++ LDFLAGS=-stdlib=libc++ ...
5
votes
3answers
173 views

How can i read a 0xFF in a file with libc++ istream_iterator?

Consider the following example code: #include <iostream> using namespace std; int main() { istreambuf_iterator<char> eos; istreambuf_iterator<char> iit(cin.rdbuf()); int i; ...
2
votes
1answer
230 views

Google Maps SDK for iOS and libc++

In our project we use library that use libc++ in its implementation very tightly. And when we added Google Maps SDK we got linkage error: Undefined symbols for architecture i386: ...
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, ...
1
vote
0answers
200 views

Should I use libc++ or libstdc++?

I am developing command line interface executables for both osx and linux using c/c++. The project will link against opencv. Should I use libc++ or libstdc++?
11
votes
2answers
163 views

Shouldn't istream::peek() always return what you just putback()?

Intuitively, judging from the C++ spec, it looks to me as if istream::putback( c ) should always arrange the input buffer such that the next call to istream::peek() should read the character c. Is ...
2
votes
2answers
190 views

How I do compile a application against a static library compiled with libc++ in xcode/clang/macos?

When I try to compile a test console application to test some functionality on a static library on the same workspace, i run into problems in the linking stage of the binary, it only happen when I ...
1
vote
4answers
85 views

Is streaming a stringstream a libstdc++ extension?

Is streaming a stringstream a libstdc++ extension? This program compiles with gcc-4.2, gcc-4.7-2 (using -std=c++03), and clang 3.2 using -std=c++11 and libstdc++ (thanks to Andy Prowl, see comments). ...
0
votes
1answer
107 views

STL containers, allocator, and pointer wrapper

I've made a customized slab allocator which uses mmap to allocate fixed-size segment pool. These segments are logically continuous but physically discrete. I also defined a pointer wrapper class, ...
0
votes
2answers
420 views

How do I get back c++0x/c++11 support for Mac OS X 10.6 deployment using Xcode 4.5.2

I heavily use the c++0x/c++11 features in my project, particularly code blocks and shared pointers. When I upgraded my OS to 10.8 Mountain Lion (Edit: From 10.7), I was forced to upgrade Xcode. In ...
14
votes
1answer
277 views

Why are is_swappable and is_nothrow_swappable not included in C++11?

I was surprised to discover that is_swappable<T> and is_nothrow_swappable<T> are not among the new C++11 type_traits metafunctions. They are very useful for propagating noexcept for ...
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 ...
0
votes
2answers
287 views

boost/thread.hpp fails with 'clang++ -std=c++11 -stdlib=libc++'

When trying to compile this one line with clang + libc++ (C++11 mode): #include <boost/thread.hpp> clang emits the following errors: In file included from test.cpp:1: In file included from ...
4
votes
1answer
642 views

C++ 11 threads with clang

I wanted to learn use of C++11 threads to speed up compilation of my language (yes I'm building a compiler :x). The first sample I tried threw several errors with clang (3.3 SVN). It compiled fine ...
2
votes
1answer
73 views

clang and libc++ istream::peek() does not set eof flag

I'm using Mac OSX 10.8.1 (Mountain Lion) with: Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn) - latest available. Clang with libc++ std::istream::peek() seems to work ...
1
vote
2answers
167 views

C++ STL: will c_str() be changed when creating const copy of std::string?

This is question about difference between STL implementations in handling const copy of std::string. I have such short test, which does 2 const copies and prints addresses returned by c_str(): ...
4
votes
1answer
1k views

Using clang with libc++ and c++11 from the command line with mac os x

I am having trouble getting even a simple hello world to compile with clang if I enable c++11 and libc++. For example the following code #include <iostream> int main() { std::cout << ...
4
votes
1answer
235 views

Is clang's libc++ production ready? [closed]

Has anyone got a positive experience using clang's libc++ in production? Status chart at http://libcxx.llvm.org/libcxx_by_chapter.pdf doesn't look very good to me.
0
votes
1answer
97 views

OSX “ld”: how to show mangled names of unresolved symbols? how to get a map file?

On OS X 10.8.2 (Mountain Lion), I'm trying to link a program using libc++ (not libstdc++) and ld is giving me an unresolved symbol error. Undefined symbols for architecture x86_64: ...
2
votes
1answer
372 views

Trouble building tests with Google Test, Clang, and libc++

I tried building Google Test with the following CMake configuration: $ CMAKE_CXX_COMPILER="clang++" CMAKE_CXX_FLAGS="-std=c++11 -stdlib=libc++ -U__STRICT_ANSI__" cmake ../source Building shows ...
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 ...
8
votes
1answer
217 views

Does std::map require the comparator's operator() to be const?

The following code fails to compile with XCode 4.5's clang++ when using libc++ on OS X 10.8: #include <map> #include <string> class Foo { public: explicit Foo(int val_) : val(val_) {} ...
8
votes
1answer
227 views

Possible bug in libc++?

The following code doesn't compile with clang 3.1, using libc++ (don't know the version, the current one that comes with Xcode). It works fine with other standard libs. Is there an error in my code, ...
1
vote
1answer
1k views

In Xcode 4.5, what is “Compiler Default” for “C++ Standard Library” and “C++ Language Dialect”?

What is the value of "Compiler Default" for "C++ Standard Library" and "C++ Language Dialect" in Xcode 4.5? My guess is libstdc++ and GNU++98, but it would be nice to have clarification. From the ...
2
votes
0answers
166 views

boost unit test framework aborts with clang and libc++

I am using: SLES 11 x86_64 Boost 1.51.0 compiled with the following: ./b2 toolset=clang cxxflags="-stdlib=libc++ -std=c++11" linkflags="-stdlib=libc++" clang from svn (around two weaks old) ...
7
votes
1answer
2k views

Using libstdc++ compiled libraries with clang++ -stdlib=libc++

I am working in C++ under Mac OS X (10.8.2) and I recently came up with the need of using C++11 features, which are available through the clang++ compiler using the libc++ stdlib. However, I also need ...
4
votes
2answers
250 views

Customising std::shared_ptr or boost::shared_ptr to throw an exception on NULL dereference

I have a few projects that use boost::shared_ptr or std::shared_ptr extensively (I can convert to either implementation soon enough, if there is a good answer to this question for one, but not the ...
5
votes
1answer
423 views

Debug issues with libc++ in Xcode 4.4

I am having a problem when I try to debug on a list iteration on c++. I made a simple test app: int main(int argc, const char * argv[]) { // insert code here... std::cout << "Hello, World!\n"; ...
1
vote
1answer
122 views

Object hierarchy using std::list from libc++ (bug?)

I think I found a bug in the libc++ list implementation. The following code will produce a compiler error (Field has incomlete type 'foo') when using certain build settings in xcode: #include ...
0
votes
1answer
968 views

Compile and use boost 1.51.0 on Mac OS X 10.8

So I've spent the last 20 hours trying to get boost working under OS X 10.8, and I have finally gotten it to compile without errors, but when I try to compile a test case that uses Boost.test, I'm ...
3
votes
1answer
208 views

map with incomplete value type

I'm getting an error with the following: class Test { std::map<std::string,Test> test; }; The error is "Field has incomplete type 'Test'". I read a few threads with suggested this might ...
2
votes
1answer
200 views

Xcode 4.4 Lion inconsistent newline behavior in C++ with GCC vs LLVM

I've been using the following bit of code for years to consume characters from cin up and including the next newline. void skip_rest_of_line() { while (cin.get() != '\n') {} } I would call ...
5
votes
1answer
416 views

Chained invocation of C++11 std::bind doesn't work

I have a problem when invoking nested std::bind expressions. The following code demonstrates the problem. It fails to compile with libc++, but works with boost: #define BOOST 0 #if BOOST ...
1
vote
1answer
367 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 ...
2
votes
1answer
1k views

clang 3.1 with libc++on ubuntu 12.04, iostream not found

I am trying to compile a C++ program using clang which I installed using a packaged version here https://launchpad.net/~eudoxos/+archive/llvm-3.1. This is the command: clang++ -std=c++11 ...
0
votes
1answer
371 views

Weird errors in stdc++ headers when trying to compile with clang++

I'm trying to compile VCMI under OS X 10.7 using clang++. I configured project with CXX=clang++ because Apple's gcc didn't seem to recognize required -std=c++0x flag. I've added -stdlib=libc++ to ...
2
votes
1answer
205 views

Matching “beginning-of-line” using libc++ regex library (C++11)

I would like to match all lines that start with a given word, say iheap. If I am not mistaken the regular expression (in ECMAScript syntax) "^iheap.*" should do the trick. However, when I tested this ...
6
votes
2answers
364 views

Checking for C++11 library features

What is a good way of checking for the presence of specific C++11 features of the standard library. For compiler features I just went by the way of checking the compiler version for the (IMHO) major ...
5
votes
1answer
559 views

State of C++11 standard support in libc++?

Is there a good source of information on C++11 standard support in libc++? Its web site says 98% of the standard is supported but I'd like to know what features the other 2% are. Something similar ...

1 2