Hi Renato,

On Thu, Dec 11, 2014 at 12:25 PM, Renato Golin <[email protected]> wrote:
> Hi Ismail,
>
> That is odd. Can you post your example and the full command line?
>
> I see you're using c++14, maybe that's why it wasn't caught by the build 
> bots...

Eagle eyes! I forgot that my clang++ alias enables libc++ with c++14
so the culprit is libc++

/havana/dist/llvm/bin/clang++ -stdlib=libc++ hello.cpp

crashes

where as

/havana/dist/llvm/bin/clang++ hello.cpp

works.

hello.cpp:

#include <iostream>

int main() {
    std::cout << "Hello World! << std::endl;
}
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to