使用 Bigloo 编译
我已经在 DrRacket/Scheme 中编写了一个方案文件,并且有我的 .rkt 文件。我现在需要编译我用 Bigloo 编写的内容。我安装了 Bigloo,但我不知道如何使用它。
有人知道怎么做吗?
I've written a scheme file in DrRacket/Scheme and I have my .rkt file. I need to now compile what I've written with Bigloo. I have Bigloo installed, but I'm not sure how to use it.
Anyone know how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译一个Scheme模块。使用
-c
选项调用bigloo
编译器:这将输出一个目标文件 (.o)。您可以使用以下命令将目标文件链接到可执行文件:
您还可以一步编译和链接:
请参阅 此链接了解更多信息。
To compile a Scheme module. invoke the
bigloo
compiler with the-c
option:This will output an object file (.o). You can link object files into an executable with the command:
You can also compile and link in a single step:
See this link for more information.