如何在 XCode 中使用外部构建日志
我想知道是否可以在 XCode 中打开外部构建日志(例如简单 make 脚本的结果)来处理错误和警告? 换句话说:XCode 可以用作编辑器并仍然处理外部构建日志吗?
I was wondering if it is somehow possible to open an external build log (for example the result of a simple make script) in XCode to process the errors and warnings?
In other words: can XCode be used as an Editor and still process an external build log?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以建议这种方法,以实现我的类似目标:
在 Xcode 的“构建阶段”中添加“运行脚本”操作:
这会神奇地向构建日志添加警告
我希望您可以根据需要调整此脚本。
I could suggest this approach, working for my similar aim:
in "Build Phases" in Xcode add "Run script" action:
This magically adds warnings to Build log
I hope you can tune up this script for your needs.