搜遍百度,还是没能用 rebar 调试起 erlang
网上的教程都是一遍就生成出 ebin 目录,然后 erlang run config 的工作目录指向这个 ebin 就可以调试了,我这个 ebin 在_build 目录->defalut 目录,然后点三角运行始终没反应,我是搜了一天,没有解决办法,像大佬求助,或者其他能够调试 erlang 的方法也行,自带的 im() debugger 实在不好用。
study_erlang.app.src
{application,study_erlang,[ {description,""}, {vsn,"1"}, {registered,[]}, {applications,[ kernel, stdlib ]}, {mod,{study_erlang,[]}}, {env,[]} ]}.
rebar.config
{escript_incl_extra,[{"priv/templates/*","."}]}. {erl_opts, [ debug_info, { src_dirs, [ "src" ] } ] }. {pre_hooks,[]}. {cover_enabled,true}. {sub_dirs,["src"]}.
点运行,他就是没反应,一闪而过。我忙了一天了,我太没用了。