ARM regression between r223766 and r223925
İsmail Dönmez
ismail at donmez.ws
Thu Dec 11 02:29:29 PST 2014
Hi Renato,
On Thu, Dec 11, 2014 at 12:25 PM, Renato Golin <renato.golin at linaro.org> 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;
}
More information about the cfe-commits
mailing list