在 Erlang shell 中加载项目 Rebar 依赖项的简单方法
我有一个使用 Rebar 作为构建工具的项目。开发时,我希望对 Rebar.config 中指定的所有应用程序依赖项进行编译和编译。尽可能容易地加载到外壳中。我在 Emacs 中使用 Erlang shell。有什么快速方法可以做到这一点?
I've got a project that uses Rebar as build tool. When developing, I would like all my app dependencies that are specified in Rebar.config be compiled & loaded in the shell as easy as possible. I'm using the Erlang shell in Emacs. What's a quick way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有使用 Emacs,所以我可能会错过您问题中与 Emacs 相关的方面,但是当我想要一个加载了所有 rebar 依赖项的 Erlang shell 时,我使用:
I'm not using Emacs so I may miss the Emacs-specific side of your question, but when I want an Erlang shell with all my rebar dependencies loaded, I use:
应该加载所有依赖项。
should load all your dependencies.