在 Xcode 中使用 Yacc 和 Lex
我读到 Xcode 4(我想是以前的版本)已经内置了对 Yacc 和 Lex 的支持,我刚刚了解了它们。我正在尝试建立一个简单的项目来测试它们,但由于我是 Xcode 和 Yacc/Lex 的新手,我似乎无法找出正确的方法。
任何人都可以推荐在 Xcode 4 中使用 Yacc/Lex 的有用指南或教程吗?
I have read that Xcode 4 (and I suppose previous versions) have built in support for Yacc and Lex which I am just learning about. I'm trying to set up a simple project to test them out but as I'm new to Xcode and Yacc/Lex I can't seem to figure out the correct way to do it.
Can anyone recommend a helpful guide or tutorial for using Yacc/Lex in Xcode 4?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Xcode 中编写解释语言后,我发现以下教程和参考资料很有用。
http://dinosaur.compilertools.net/
http://gnuu.org/2009/09/18/writing-your-own-toy-compiler/
http://epaperpress.com/lexandyacc/
以下是有关 Xcode 中 Yacc 支持的一些信息:将 Bison/Flex/Yacc 集成到 XCode 中
祝您好运!
Having written an interpreted language in Xcode I have found the following tutorials and references useful.
http://dinosaur.compilertools.net/
http://gnuu.org/2009/09/18/writing-your-own-toy-compiler/
http://epaperpress.com/lexandyacc/
Here is some information about the Yacc support in Xcode: Integrating Bison/Flex/Yacc into XCode
Best of luck to you!