[Lldb-commits] [PATCH] D31366: Do not dereference std::unique_ptr by default
Tamas Berghammer via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 30 13:10:00 PDT 2017
tberghammer added a comment.
I tried it out on OSX and the problem is that version of libstdc++ shipping with every recent OSX version (don't know about old ones) is 4.2.1 (last version with GPL v2) what doesn't support std::unique_ptr (supported since 4.3). Because of this I think the correct skip condition would be something like "skip if libstdc++ is older then 4.3" but I don't think we have a good way to specify that.
https://reviews.llvm.org/D31366
More information about the lldb-commits
mailing list