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
* 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
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
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