Erlang erlIDE:支持哪些 -compile 选项?
我一直在尝试让 erlIDE 使用 -compile 选项,例如
-编译('S')。 % 生成“汇编程序”列表
无济于事。我做错了什么?
注意:我还尝试为编译器设置“项目特定”选项,但没有成功。
编辑:是否可能调用“erlc”并强制生成“光束”,从而忽略生成“汇编器”输出的命令?
I've been trying to get erlIDE to work with -compile options e.g.
-compile('S'). % Generate 'assembler' listing
to no avail. What I am doing wrong?
NOTE: I have also tried setting 'project specific' options for the compiler with no success.
EDIT: could it be that 'erlc' is invoked and forced to generate a 'beam' and thus disregards orders to generate 'assembler' output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,这还没有得到很好的支持,对此表示抱歉。在最新版本的 erlide 中,.S 文件是在工作区目录而不是 project/ebin 中创建的。这是因为编译器使用当前目录,忽略了 outdir 选项(在本例中)。
问候,
弗拉德
This is badly supported, currently, sorry about that. With recent releases of erlide, the .S files are created in the workspace directory instead of project/ebin. This is caused by the fact that the compiler uses the current directory, ignoring the outdir option, in this case.
regards,
Vlad