Erlang编译错误
Windows XP、Erlang R13B02 (erts-5.7.3)
今天我们不想编译任何 erlang 文件
c(binm)。 ** 异常错误:未定义函数编译:file/2 在函数 c:c/2 中
,昨天所有工作。
PS安装R14B03,无法再次编译
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常奇怪的错误。您是否不小心从 OTP 安装中删除了compile.beam 文件?如果您不想更改 OTP 版本,重新安装 R13B02 可能可以解决该问题。
但如果您出于任何特殊原因不需要使用 R13B02,我建议您趁机卸载它并安装最新版本 (R14B03) (http://www.erlang.org/download.html)。有许多改进,特别是在类型规范方面。
That is a very odd error. Have you by accident deleted the compile.beam file from your OTP installation? A re-installation of R13B02 might solve it, if you don't want to change the OTP version.
But if you don't need to use R13B02 for any particular reason, I recommend taking the opportunity to uninstall it and install the latest version (R14B03) instead (http://www.erlang.org/download.html). There have been many improvements, in particular regarding type specifications.
io:format("~p~n", [code:get_path()]).
打印什么?它应该包含一个类似somepath/lib/compiler-4.7.2/ebin
的目录。检查该目录是否确实存在,并且它包含文件compile.beam
。What does
io:format("~p~n", [code:get_path()]).
print? It should contain a directory likesomepath/lib/compiler-4.7.2/ebin
. Check that that directory actually exists, and that it contains the filecompile.beam
.