一旦进入lldb,我就运行:help type synthetic add
有一个-w选项:
-w <name> ( --category <name> )
Add this to the given category instead of the default one.这里的类别到底是什么意思?
我见过一些人使用lib name作为值,例如:
https://github.com/llvm-mirror/lldb/blob/master/examples/synthetic/unordered_multi.py
-w libcxx还有其他用途吗?有没有什么文件能解释这一点?
发布于 2019-09-10 01:40:29
类型类别是组织上的便利。您可以使用type category命令启用、禁用、列出或删除该类别中的摘要/合成子对象。此外,常规的“`type list”命令将按类别对摘要进行分组,它们没有任何其他效果。
https://stackoverflow.com/questions/57846849
复制相似问题