Re: System libc++ isn't fully compatible with clang 3.4 from ports

2014-01-30 Thread Dimitry Andric
On 29 Jan 2014, at 15:45, Dmitry Marakasov wrote: > * Dimitry Andric (d...@freebsd.org) wrote: > >>> JFYI, I've just ran into shortcoming of libc++ from 10-RELEASE when used >>> with clang 3.4 from ports: >> ... >>> The cause: http://llvm.org/bugs/show_bug.cgi?id=17798, was fixed in >>> libc++ r1

Re: System libc++ isn't fully compatible with clang 3.4 from ports

2014-01-29 Thread Dmitry Marakasov
* Dimitry Andric (d...@freebsd.org) wrote: > > JFYI, I've just ran into shortcoming of libc++ from 10-RELEASE when used > > with clang 3.4 from ports: > ... > > The cause: http://llvm.org/bugs/show_bug.cgi?id=17798, was fixed in > > libc++ r194154. We probably need to update libc++ or at least bac

Re: System libc++ isn't fully compatible with clang 3.4 from ports

2014-01-29 Thread Dimitry Andric
On 29 Jan 2014, at 03:27, Dmitry Marakasov wrote: > > JFYI, I've just ran into shortcoming of libc++ from 10-RELEASE when used > with clang 3.4 from ports: ... > The cause: http://llvm.org/bugs/show_bug.cgi?id=17798, was fixed in > libc++ r194154. We probably need to update libc++ or at least bac

System libc++ isn't fully compatible with clang 3.4 from ports

2014-01-28 Thread Dmitry Marakasov
Hi! JFYI, I've just ran into shortcoming of libc++ from 10-RELEASE when used with clang 3.4 from ports: --- % cat test.cc #include #include int main() { std::function f = []() { std::cerr << "test\n"; }; return 0; } % clang++ -std=c++11 test.cc --- % clang++34 -std=c++11 test.c