调试 llvm-ld 崩溃
我在 llvm-ld 中遇到断言失败崩溃。我想将其追溯到我的代码行(因为也许我的一些松鼠代码导致了这种情况)。
llvm-ld 可以创建一个日志文件或者以其他方式指出我为什么不高兴吗?
I am getting an assertion-failure crash in llvm-ld. I'd like to track this back to a line of my code (since maybe there's some squirrely code of mine that's causing this).
Can llvm-ld create a log file or otherwise point me to why its unhappy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不会是 ICU 中的代码,而是 Alchemy(或 llvm 本身)中的代码导致了问题。如果你真的想追踪它,最简单的方法就是找出它失败的 llvm IR 构造,然后查看 Alchemy 前端或创建 llvm IR 的任何内容正在为其创建代码,然后回溯到等效的代码代码中的行。
It isn't going to be the code in ICU, it'll be code in Alchemy (or llvm itself) that's causing the problem. If you really wanted to track it back the easiest would be to find out what llvm IR construct it's failing on and then see where the Alchemy front end or whatever is creating the llvm IR is creating the code for that and then backtrack it to the equivalent line in your code.