clayborg wrote: > > warning: This version of LLDB has no plugin for the language "rust". > > Inspection of frame variables will be limited. > > This isn't exactly a lie though? I think it would be incorrect to say LLDB > supports Rust. Does this change only make the warning go away or does it > actually change functionality too?
Rust actually uses the Clang AST for type display, expressions are not supported, so it is correct to say that TypeSystemClang supports rust. The warning does go away with this fix. They have decent type display and some hacks to display Rust enums and this is what the rust community uses to debug. https://github.com/llvm/llvm-project/pull/172567 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
