且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

llvm报告用不兼容类型在不同翻译单元中声明的错误

更新时间:2023-11-10 23:30:28

This is most likely a problem with the debug information rather than with the generated code, which is why your app runs correctly but the expression evaluator in the debugger fails.

The debugger always tries to read the least amount of debug information it needs to in order to do whatever you ask it to. So until you do something that causes us to read in the two modules that have disagreeing debug information, you won't see this problem. That's why it sometimes happens and sometimes doesn't.

Anyway, please file a bug about this with bugreporter.apple.com.

相关阅读

推荐文章