“重新定义模块”是什么意思? erlang 中的错误是什么意思?
我将 mochijson2.erl 模块添加到我的ejabberd src 目录,但是当我尝试编译代码时出现以下错误:
./mochijson2.erl:8: redefining module
Where Could this module be Defined?我的来源中没有它。
I added the mochijson2.erl module to my ejabberd src directory but when I try to compile the code I get the following error:
./mochijson2.erl:8: redefining module
Where could this module be defined? I don't have it in my source.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着您的模块有两个
-module(...)
指令,这是不允许的。检查模块的源代码。It means your module has two
-module(...)
directives, which is not allowed. Check the source code of the module.