芝加哥老板在啤酒方面犯了错误



我正在将我在Chicagoboss开发的web应用程序从我的mac移植到ubuntu。但是当我在ubuntu上运行make时,我会得到以下错误:

错误:pre_compile在处理/home/myname/myapp_priv时失败:{'EXIT',{undef,[{lager,start,[],[]},{boss_rbar,compile,4,[{file,"../ChicagoBos-0.8.12/priva/rebar/bos_rebar.ell"},{line,97}]},{boss_plugin,pre_compile,2,[{file,"priva/rebar/bos_plugin.el"},{line,105}]},{rebar_core,run_modules,4,[]},{rebar_core,execute,5,[]},{rebar_core,process_dir1,6,[]},{rebar_core,process_commands,2,[]},{钢筋,主钢筋,1,[]}]}}make:***[all]错误1

我是不是错过了什么?提前感谢所有人。

此错误表示编译时不存在较大的解析转换。Lager没有直接定义像lager:infolager:error这样的函数。在编译过程中,它会更改那些调用,添加行号和其他有用的东西。

您的问题通常可以通过在./deps/boss/rebar.config中的任何其他依赖项之前移动更大的依赖项或将其作为依赖项直接添加到./rebar.config中的应用程序中来解决。

最新更新