编译 .ss 文件
我听说你可以用DrScheme编译.ss文件,甚至记得做过一次 从而使我的代码获得良好的加速,因为它不需要放入 GUI 所需的所有调试信息。如何去做这件事呢?
I heard that you can compile .ss files with DrScheme, and even remember doing it once
to result in some good speedups on my code, since it doesn't need to put in all the debugging info necessary for the GUI. How does one go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 DrScheme IDE 中,可以在“方案 -> 创建可执行文件...”菜单项下找到它。这也可以通过命令行完成:
In the DrScheme IDE this can be found under the "Scheme -> Create Executable..." menu item. This can also be done from the command line with:
看起来 PLT 方案中包含一个名为
mzc
生成独立的可执行文件。Looks like there's a compiler included with PLT Scheme called
mzc
that produces standalone executables.