[Lldb-commits] [PATCH] D20671: [cmake] Add a big warning about a libstdc++ issue

Kamil Rytarowski via lldb-commits lldb-commits at lists.llvm.org
Thu May 26 04:42:43 PDT 2016


krytarowski added a comment.

NetBSD is using newer libstdc++.

  #include <set>
  std::set<int> s = std::set<int>(std::allocator<int>());
  int main() { return 0; }

Compiles (I need to specify the -std=c++11 option) and runs.

I will try it out in the context of LLDB CMake scripts.


http://reviews.llvm.org/D20671





More information about the lldb-commits mailing list