http://llvm.org/bugs/show_bug.cgi?id=18402
Richard Smith <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #2 from Richard Smith <[email protected]> --- Not our bug. glibc doesn't provide '::gets' in C++1y mode. libstdc++-4.8 tries to use '::gets' in C++1y mode. By chance, glibc is correct here (there is no ::gets in C++1y, but glibc made the change long before the decision was made for C++1y). libstdc++-4.8 is not a C++1y standard library, so this doesn't work. This should work fine if you use (recent) libc++. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
