4

我一直在尝试使用 Rebar 设置一个简单的 Erlang 应用程序,但无法让它工作。我按照http://skeptomai.com/?p=56上的说明进行操作,运行时./rebar -v generate出现此错误:

==> Entering directory `/home/adam/erlang-test3/testing-rebar/apps/myapp'
WARN:  'generate' command does not apply to directory /home/adam/erlang-test3/testing-rebar/apps/myapp
==> Leaving directory `/home/adam/erlang-test3/testing-rebar/apps/myapp'
==> Entering directory `/home/adam/erlang-test3/testing-rebar/rel'
==> rel (generate)
{"init terminating in do_boot","Release mynode uses non existing application mynode"}

Crash dump was written to: erl_crash.dump
init terminating in do_boot (Release mynode uses non existing application mynode)

关注https://bitbucket.org/basho/rebar/wiki/ReleaseHandling时出现类似错误。关注http://www.metabrew.com/article/erlang-rebar-tutorial-generating-releases-upgrades时,我得到:

{"init terminating in do_boot",{undef,[{dummy_proj,start,[]},{init,start_it,1},{init,start_em,1}]}}

如何让钢筋工作?我的 Erlang 版本是Erlang R14B04 (erts-5.8.5) [source] [64-bit] [smp:2:2] [rq:2] [async-threads:0] [kernel-poll:false]

4

1 回答 1

6

我也开始学习erlang + rebar,前段时间我遇到了同样的问题,我想你的reltool.config文件 有问题

  1. 将路径添加到lib_dirs. 我有{lib_dirs, ["../../", "../deps/"]}
  2. 将您的应用添加到应用列表。就我而言,这是-{app, MY_APP_NAME, [{incl_cond, include}]}

更新: 您必须重命名您的应用程序。Fe 到 erlangtest1。我的工作 reltool.config

{sys, [  
       {lib_dirs, ["../../"]},  
       {erts, [{mod_cond, derived}, {app_file, strip}]},  
       {app_file, strip},  
       {rel, "exemplar", "1",  
        [  
         kernel,  
         stdlib,  
         sasl,  
     erlangtest1  
        ]},  
       {rel, "start_clean", "",  
        [  
         kernel,  
         stdlib  
        ]},  
       {boot_rel, "exemplar"},  
       {profile, embedded},  
       {incl_cond, exclude},  
       {excl_archive_filters, [".*"]}, %% Do not archive built libs  
       {excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)",  
                           "^erts.*/(doc|info|include|lib|man|src)"]},  
       {excl_app_filters, ["\.gitignore"]},  
       {app, sasl,   [{incl_cond, include}]},  
       {app, stdlib, [{incl_cond, include}]},  
       {app, kernel, [{incl_cond, include}]},  
       {app, erlangtest1, [{incl_cond, include}]}  
      ]}.  

{target_dir, "exemplar"}.  

{overlay, [  
           {mkdir, "log/sasl"},  
           {copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},  
           {copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},  
           {copy, "files/exemplar", "bin/exemplar"},  
           {copy, "files/exemplar.cmd", "bin/exemplar.cmd"},  
           {copy, "files/start_erl.cmd", "bin/start_erl.cmd"},  
           {copy, "files/install_upgrade.escript", "bin/install_upgrade.escript"},  
           {copy, "files/sys.config", "releases/\{\{rel_vsn\}\}/sys.config"},  
           {copy, "files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"}  
          ]}.  
于 2012-05-10T06:47:31.007 回答